/* ======= Base ======= */
body {
    font-family: "Poppins", Arial, sans-serif;
    background: linear-gradient(135deg, #ff6900, #ff8533);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box; 
    font-size: 2rem;
}

/* ======= Card (Contêiner Principal) ======= */
.card {
    background: #fff;
    padding: 45px 30px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    width: 85%;
    text-align: center;
    animation: fadeIn 0.6s ease;
    box-sizing: border-box;
}

/* ======= Logo da Empresa ======= */
.logo {
    max-width: 250px; 
    height: auto;
    margin-bottom: 30px; 
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ======= Título ======= */
.card h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.saudacao-info {
    font-size: 1.5rem;
    color: #808080; 
    margin-bottom: 30px;
    text-align: justify;
    padding: 0 10px;
}

input {
    width: 80%; /* Ocupa toda a largura do contêiner */
    box-sizing: border-box;
    padding: 18px;
    margin: 12px 0 30px 0;
    border: 1px solid #808080;
    border-radius: 12px;
    font-size: 2rem;
    transition: all 0.25s;
}

input:focus {
    border-color: #ff6900;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 105, 0, 0.2);
}

/* ======= Checkbox de Termos ======= */
.termos-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    width: 100%;
}

.termos-container input[type="checkbox"] {
    /* Redefine os estilos de input para um checkbox */
    width: 35px; 
    height: 35px;
    margin: 0 10px 0 0;
    padding: 0;
    border: 1px solid #808080;
    box-shadow: none; 
}

.termos-container label {
    font-size: 1.7rem;
    color: #808080;
    cursor: pointer;
    display: inline; 
    text-align: left;
    margin: 0;
}

/* ======= Botão ======= */
button, .btn {
    background: linear-gradient(135deg, #007aff, #005fcc);
    color: white;
    border: none;
    padding: 18px;
    width: 100%;
    border-radius: 20px;
    font-size: 2.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 12px rgba(0, 122, 255, 0.3);
    margin-bottom: 30px;
}

button:hover, .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 122, 255, 0.4);
}

/* ======= Texto secundário ======= */
a {
    display: inline-block;
    margin-top: 18px;
    color: #007aff;
    text-decoration: none;
    font-size: 1.1rem;
}

a:hover {
    text-decoration: underline;
}

/* ======= Animação ======= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ======= Ajustes para telas móveis (Melhoria de visibilidade) ======= */
@media (max-width: 480px) {
    body {
        padding: 10px; 
    }

    .card {
        max-width: 95%; 
        width: 95%;
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .logo {
        
        margin-bottom: 25px;
    }

    .card h1 {
        margin-bottom: 25px;
    }
}