:root {
    --primary-color: #6c63ff;
    --secondary-color: #d4a41e;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --text-color: #555;
    --white: #fff;
    --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://www.ripeinsurance.co.uk/media/507482/the-ultimate-guide-to-hairdresser-equipment.jpg') no-repeat center center;
    background-size: cover;
    color: var(--text-color);
}

.container {
    width: 80%; 
    height: 80vh;
    display: flex;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.212);
    border-radius: 15px;
}

.form-image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    padding: 1rem; 
}

.form-image img {
    width: 31rem; 
}

.form {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #d4a41e; 
    padding: 3rem;
}


.form-header {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.form-header .title h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    position: relative;
    text-align: center;
}

.form-header .title h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0.5rem auto 0;
    border-radius: 10px;
}

.login-button {
    margin-top: 1rem;
    width: 100%;
}

.login-button button {
    width: 100%;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), #5548c8);
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-button button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.login-button button a {
    text-decoration: none;
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
}

.input-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem 0;
    width: 100%;
}

.input-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.1rem;
    width: 48%;
    position: relative;
}

.input-box i {
    position: absolute;
    left: 1rem;
    top: 2.2rem;
    color: var(--primary-color);
}

.input-box input {
    margin: 0.6rem 0;
    padding: 0.8rem 1.2rem 0.8rem 2.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.input-box input:hover {
    background-color: #f5f5f5;
}

.input-box input:focus-visible {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
    outline: none;
}

.input-box label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-color);
}

.gender-inputs {
    width: 100%;
    margin-top: 1rem;
}

.gender-title h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.gender-group {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.gender-input {
    display: flex;
    align-items: center;
}

.gender-input input {
    margin-right: 0.5rem;
}

.gender-input label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-color);
}

.continue-button {
    width: 100%;
    margin-top: 2rem;
}

.continue-button button {
    width: 100%;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), #5548c8);
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.continue-button button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
    }
    
    .form-image, .form {
        width: 100%;
    }
    
    .form-image {
        padding: 1.5rem;
    }
    
    .form {
        padding: 2rem;
    }
    
    .input-box {
        width: 100%;
    }
    
    .gender-group {
        flex-direction: column;
        gap: 0.5rem;
    }
}
@media screen and (max-width: 768px) {
    .container {
        max-width: 400px; /* Largura menor para mobile */
    }
    
    .form-image {
        padding: 1rem;
    }
    
    .form {
        padding: 1.5rem;
    }
}