
@import url('://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&display=swap');
* {
    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: #fdc763;
}

.container {
    width: 80%;
    height: 80vh;
    display: flex;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(241, 180, 139, 0.808);
}
.form-image {
    width: 680px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10rem;
}
.form-image img {
    width: 40rem;
}
.form {
    width: 100%;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction:column;
    background-color: #f04907b7;
    padding: 2rem;
}
.form-header {
    margin-bottom: 8rem;
    display: flex;
    justify-content:space-between;
}
.login-button {
    display: flex;
    align-items: center;
}
.login-button button {
    border: none;
    background-color: #e095729a;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}
.login-button button a {
    text-decoration: none;
    font-weight: 500;
    color: #7e3011ce;
}
.form-header h1::after {
    content:'';
    display: block;
    width: 5rem;
    height: 0.3rem;
    background-color: #7e3011ce;
    margin: 0 auto;
    position: absolute;
    border-radius: 10px;
}
.input-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem 0;
}
.input-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.1rem;
}
.input-box input {
    margin: 0.6rem 0;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 10px;
    box-shadow: 1px 1px 6px rgba(241, 180, 139, 0.808);
}
.input-box input:houver {
    background-color: #e095729a;
}
.input-box input:focus-visible {
    outline: 1px solid #f04907b7;
}
.input-box label,
.gender-title h6 {
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
}
.input-box input::placeholder {
    color: #7e3011ce;
}
.gender-group {
    display: flex;
    justify-content: space-between;
    margin-top: 0.62rem;
    padding: 0 0.5rem;
}
.gender-input {
    display: flex;
    align-items: center;
}
.gender-input input {
    margin-right: 0.35rem;
}
.gender-input label {
    font-size: 0.81rem;
    font-weight:600;
    color: #000000c0;
}
.continue-button button {
    width: 100%;
    margin-top: 2.5rem;
    border: none;
    background-color:#7e3011ce;
    padding: 0.62rem;
    border-radius: 10px;
    cursor: pointer;
}
.continue-button button:hover {
    background-color:#7e3011ce;
}
.continue-button button a {
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 500;
    color:#fff;
}
@media screen and (max-width: 1330px) {
    .form-image{
        display: none;
    }
    .container {
        width: 50%;
    }
    .form {
        width:100%;
    }
}
@media screen and (max-width: 1064px) {
    .container {
        width: 90%;
        height: auto;
    }
    .input-group {
        flex-direction: column;
        overflow-y: scroll;
        flex-wrap: nowrap;
        max-height: 10rem;
        padding-right: 5rem;
    }
    .gender-inputs {
        margin-top: 2rem;
    }
    .gender-group {
        flex-direction: column;
    }
    .gender-input {
        margin-top: 0.5rem;
    }
}
/* Estilo do contêiner do botão */
.login-button {
    display: flex;
    justify-content: center; /* Centraliza o botão horizontalmente */
    margin-top: 2rem; /* Espaçamento acima do botão */
}

/* Estilo do botão */
.login-button button {
    border: none; /* Remove a borda padrão do botão */
    background-color:  #e095729a; /* Cor de fundo do botão */
    color: #0056b3; /* Cor do texto */
    padding: 0.8rem 1.5rem; /* Espaçamento interno (padding) */
    border-radius: 5px; /* Bordas arredondadas */
    cursor: pointer; /* Muda o cursor para indicar que é clicável */
    font-size: 1rem; /* Tamanho da fonte */
    font-weight: bold; /* Fonte em negrito */
    text-transform: uppercase; /* Transforma o texto em maiúsculas */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Transições suaves */
}

/* Estilo do link dentro do botão */
.login-button button a {
    color: #7e3011ce; /* Cor do texto do link */
    text-decoration: none; /* Remove o sublinhado do link */
    font-weight: 500;
}

/* Efeito ao passar o mouse sobre o botão */
.login-button button:hover {
    background-color: #0056b3; /* Cor de fundo do botão ao passar o mouse */
    transform: scale(1.05); /* Aumenta o tamanho do botão ligeiramente */
}

/* Efeito ao clicar no botão */
.login-button button:active {
    background-color: #004080; /* Cor de fundo do botão ao clicar */
    transform: scale(1); /* Retorna ao tamanho original */
}
