/* Aplicando a fonte Roboto em todos os textos para consistência */
body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px; /* Define um tamanho base para a fonte */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos universais para títulos, aplicando a mesma fonte e ajustes responsivos */
h1, h2, h3 {
    font-family: 'Roboto', sans-serif; /* Mantendo a consistência da fonte */
    text-align: center;
    margin: 1.25rem 0;
}

h1 {
    font-size: 2rem; /* 32px em desktop */
}

h2 {
    font-size: 1.75rem; /* 28px em desktop */
}

h3 {
    font-size: 1.5rem; /* 24px em desktop */
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 1.75rem; /* 28px em dispositivos móveis */
    }
    h2 {
        font-size: 1.5rem; /* 24px em dispositivos móveis */
    }
    h3 {
        font-size: 1.25rem; /* 20px em dispositivos móveis */
    }
}

/* Estilização de formulários para um layout limpo e acessível */
.form-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.form-column {
    width: 90%; /* Ajusta a largura do formulário */
}

.form-group {
    margin-bottom: 1rem; /* 16px baseado na fonte do corpo */
}

label {
    display: block;
    margin-bottom: 0.3125rem; /* 5px para melhor legibilidade */
}

input, select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Estilos de botões com feedback visual aprimorado */
button {
    padding: 0.625rem 1.25rem; /* 10px vertical, 20px horizontal */
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, button:focus {
    background-color: #0056b3;
    outline: none;
}

button:focus {
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* Estilos adicionais para responsividade */
@media screen and (max-width: 800px) {
    .form-container, .form-column {
        flex-direction: column;
        width: 100%; /* Maximiza a largura em dispositivos menores */
    }
}
