body {
    background-color: #f5f5f5;
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    margin: 0;
}

.form-v10-content {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    max-width: 1100px;
    position: relative;
    padding: 0;
}

.form-detail {
    display: flex;
    position: relative;
    gap: 0;
}

.form-left, .form-right {
    padding: 40px;
    width: 50%;
    box-sizing: border-box;
}

/* Form row consistency */
.form-row {
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}

.form-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 20px;
}

.form-row-1, .form-row-2 {
    width: calc(50% - 10px);
}

/* Input field consistency */
.input-text, 
.street, 
.fulladdress, 
.zip, 
.code, 
.phone,
select {
    background: #f2f2f2;
    border: none;
    border-radius: 5px;
    color: #333;
    font-size: 14px;
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
    height: 50px;
}

/* Checkbox alignment */
.form-checkbox {
    margin: 20px 0;
    display: flex;
    align-items: center;
}
.form-checkbox label.container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 14px;
    margin: 0;
    color: #333;
}

.form-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.form-checkbox .checkmark {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #f2f2f2;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-checkbox label:hover input ~ .checkmark {
    background-color: #c9cbcd;
}

.form-checkbox input:checked ~ .checkmark {
    background-color: #060b10;
    border-color: #000000;
}

.form-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.form-checkbox p {
    margin: 0;
    line-height: 1.5;
}

.form-checkbox .text {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.form-checkbox .text:hover {
    color: #357abd;
    text-decoration: underline;
}
.container {
    padding-left: 30px;
    margin-bottom: 15px;
}
.login-link {
    display: flex;
    align-items: flex-start;  /* Changed from center */
    justify-content: flex-start;  /* Changed from center */
    margin: 20px 0;
    padding: 0;  /* Removed padding to align with other elements */
    transition: all 0.3s ease;
}

.login-link p {
    margin: 0;
    color: #333;
    font-size: 14px;
    text-align: left;  /* Added to ensure left alignment */
}

.login-link a {
    color: #2f3236;
    text-decoration: none;
    font-weight: 500;
    margin-left: 5px;
    transition: color 0.3s ease;
}

.login-link a:hover {
    color: #15181c;
    cursor: pointer;
    text-decoration: underline;
}

/* Button consistency */
.register {
    background: #2f3236;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    margin: 20px 0 0 0;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(74, 144, 226, 0.2);
}

.register:hover {
    background: #15181c;
    box-shadow: 0 4px 8px rgba(74, 144, 226, 0.3);
    transform: translateY(-1px);
}

.register:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(74, 144, 226, 0.2);
}

.register:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}


/* Media Query Updates */
@media screen and (max-width: 768px) {
    .form-v10-content {
        margin: 20px;
    }

    .form-detail {
        flex-direction: column;
    }
    
    .form-left, .form-right {
        width: 100%;
        padding: 30px;
    }
    
    .form-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row-1, .form-row-2 {
        width: 100%;
    }
}