.register-container {
    display: flex;
    width: 100%;
    min-height: 80vh;
    background: #fff;
    box-shadow: 0 2px 16px #e2b64922;
    border-radius: 18px;
    overflow: hidden;
    margin: 40px auto;
    max-width: 1100px;
}

.container-image {
    flex: 0 0 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    background: #fff;
    min-height: 400px;
}

.container-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 800px;
    border-radius: 0;
    display: block;
}

.container-form {
    flex: 0 0 40%;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    background: #fff;
}

.container-form .span {
    font-size: 1.4rem;
    font-weight: 500;
    color: #c1a149;
    align-self: center;
    margin-bottom: 12px;
}

.container-form p {
    margin-bottom: 18px;
    color: #555;
    font-size: 0.8rem;
}

.container-form form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

label {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 2px;
    color: #0d2b21;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    padding: 8px 9px;
    border: 1px solid #e2b64955;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 8px;
    background: #f8f8f8;
    transition: border 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #e2b649;
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.checkbox-group label {
    font-size: 0.98rem;
    color: #555;
    font-weight: 400;
    margin-bottom: 0;
}

button[type="submit"] {
    background: linear-gradient(90deg, #e2b649 60%, #c1a149 100%);
    color: #0d2b21;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 12px 0;
    border: none;
    border-radius: 22px;
    cursor: pointer;
    margin-top: 12px;
    box-shadow: 0 2px 8px #e2b64933;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

button[type="submit"]:hover {
    background: linear-gradient(90deg, #c1a149 60%, #e2b649 100%);
    color: #fff;
    box-shadow: 0 4px 16px #e2b64955;
}


/* Responsive styles */

@media (max-width: 900px) {
    .register-container {
        flex-direction: column;
        max-width: 98vw;
        min-height: unset;
    }
    .container-image,
    .container-form {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .container-image {
        min-height: 220px;
    }
    .container-form {
        padding: 32px 6vw;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 600px) {
    .register-container {
        margin: 12px 0;
        border-radius: 8px;
    }
    .container-form {
        padding: 18px 2vw;
    }
    .container-form .span {
        font-size: 1.2rem;
    }
    button[type="submit"] {
        font-size: 1rem;
        padding: 10px 0;
    }
}


/* @media (max-width: 600px) {
    .register-container {
        margin: 12px 0;
        border-radius: 8px;
        flex-direction: column;
        position: relative;
        min-height: 320px;
    }
    .container-image {
        min-height: 220px;
        position: relative;
    }
    .container-image img {
        min-height: 220px;
        border-radius: 8px 8px 0 0;
    }
    .container-form {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 100%;
        background: rgba(255, 255, 255, 0.85);
        padding: 18px 4vw;
        z-index: 2;
        border-radius: 8px 8px 0 0;
        box-shadow: 0 4px 24px #e2b64922;
    }
    .container-form .span {
        font-size: 1.2rem;
    }
    button[type="submit"] {
        font-size: 1rem;
        padding: 10px 0;
    }
} */