/* Estilos gerais */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5; /* Um tom mais suave de fundo */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    color: #333;
    box-sizing: border-box;
}

/* Container principal */
.container {
    width: 100%;
    max-width: 1000px;
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

/* Título principal - elegante e espaçado */
h2 {
    font-size: 26px;
    color: #333;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1px;
}

/* Subtítulo e explicação */
h3 {
    font-size: 16px;
    color: #777;
    text-align: center;
    line-height: 1.6;
    margin-top: 30px;
    font-weight: 400;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* Formulário em grid para melhor organização */
.form-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

form {
    background-color: #fff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Efeito no campo de entrada */
label {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    display: block;
    font-weight: 500;
}

/* Campo de input - mais espaçado e com borda arredondada */
input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 18px;
    color: #333;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

input[type="text"]:focus {
    border-color: #fff200;
    outline: none;
    box-shadow: 0 0 8px rgba(255, 242, 0, 0.8);
    background-color: #fff;
}

/* Estilo do botão com efeitos */
button {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background-color: #fff200;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s ease-in-out;
    text-transform: uppercase;
}

button:hover {
    background-color: #e6d100;
    transform: translateY(-3px);
}

button:active {
    transform: translateY(1px);
}

button:disabled {
    background-color: #ddd;
    cursor: not-allowed;
}

/* Layout responsivo para dispositivos móveis */
@media (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 14px;
    }
}
