/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos gerais */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    padding: 20px;
}

.container {
    max-width: 700;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-image {
    text-align: center;
    margin-bottom: 20px;
}

.form-image img {
    max-width: 100%;
}

.form-header h1 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.input-box {
    margin-bottom: 15px;
}

.input-box label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.input-box input,
.input-box select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.gender-inputs h6 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.gender-input {
    margin-bottom: 10px;
}

.continue-button {
    text-align: center;
    margin-top: 20px;
}

.continue-button button {
    width: 100%;
    margin-top: 1rem;
    border: none;
    background-color: #25D366;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    color: white; /* Cor do texto em branco */
    font-weight: bold; /* Texto em negrito */
}

.continue-button button:hover {
    background-color: orange; /* Cor de fundo laranja ao passar o mouse */
}

/* Estilos para dispositivos com largura maior que 800px */
@media screen and (min-width: 801px) {
    /* Controle de variáveis */
    :root {
        --radio-margin: 5px; /* Margem à direita para separar os inputs */
    }

    /* Estilos para o container principal */
    .container {
        width: 70%;
        height: 95vh;
        display: flex;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.212);
    }

    /* Estilos para a imagem do formulário */
    .form-image {
        width: 80%;
        display: flex;
        justify-content: center;
        align-items: center;

        padding: 1rem;
    }

    .form-image img {
        max-width: 100%;
        height: auto;
    }

    /* Estilos para o formulário em si */
    .form {
        width: 100%; /* Altere a largura conforme necessário */
        max-width: 600px; /* Defina a largura máxima para evitar que o formulário fique muito grande */
        height: 100%; /* Altere a altura conforme necessário */
        overflow-y: auto; /* Adicione uma barra de rolagem vertical se o conteúdo ultrapassar a altura */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        padding: 1rem;
    }

    #proprio,
    #alugado {
        margin-right: var(--radio-margin);
        transform: scale(0.8);
        float: left;
        width: 20px; /* Largura dos inputs de rádio */
    }
    
    /* Estilo para as labels dos inputs de rádio de propriedade */
    #proprio + label,
    #alugado + label {
        font-size: 0.8rem;
        margin-left: 1px;
        float: left; 
    }
    

    /* Estilos para o cabeçalho do formulário */
    .form-header {
        margin-bottom: 1rem;
        display: auto;
        justify-content: space-between;
    }

    /* Estilos para o grupo de inputs */
    .input-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0.5rem 0;
    }

    /* Estilos para cada input-box */
    .input-box {
        display: auto;
        flex-direction: flex;
        margin-bottom: 0.9rem;
    }

    .input-box input {
        margin: 0.3rem 0.3rem;
        padding: 0.5rem 0.5rem;
        border: none;
        border-radius: 5px;
        box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        font-size: 0.8rem;
    }

    .input-box input:hover {
        background-color: #eeeeee75;
    }

    .input-box input:focus-visible {
        outline: 1px solid #6c63ff;
    }

    .input-box label,
    .gender-title h6 {
        font-size: 0.75rem;
        font-weight: 600;
        color: #000000c0;
        margin-bottom: 0.3rem;
    }

    .input-box input::placeholder {
        color: #000000be;
    }

    /* Estilos para o grupo de gênero (Próprio/Alugado) */
    .gender-group {
        display: flex;
        justify-content: space-between;
        margin-top: 0.3rem;
        padding: 0 .5rem;
    }

    /* Estilos para o input de gênero */
    .gender-input {
        display: flex;
        align-items: center;
    }

    .gender-input input {
        margin-right: 0.35rem;
    }

    .gender-input label {
        font-size: 0.75rem;
        font-weight: 600;
        color: #000000c0;
    }

    .continue-button button {
        width: 100%;
        margin-top: 1rem;
        border: none;
        background-color: #25D366;
        padding: 0.5rem;
        border-radius: 5px;
        cursor: pointer;
        color: white; /* Cor do texto em branco */
        font-weight: bold; /* Texto em negrito */
    }

    .continue-button button:hover {
        background-color: orange; /* Cor de fundo laranja ao passar o mouse */
    }


}

.form-header h1::after {
    content: '';
    display: block;
    width: 70px; /* Largura da linha */
    height: 2px; /* Altura da linha */
    background-color: #25D366; /* Cor da linha */
    margin: 10px auto; /* Margem da linha */
    border-radius: 10px; /* Raio da borda */
}


