/* ===== BASE ===== */
body {
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #91ad9d, #5da0af);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== CARD ===== */
/* .card {
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    max-width: 420px;
    width: 100%;
    text-align: center;
    background: #fff;
} */

.card {
    border-radius: 16px;
    padding: 24px 22px;        /* ⬅ diminui o espaço interno */
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);

    max-width: 380px;          /* ⬅ diminui a largura */
    width: 100%;
    margin: auto;

    text-align: center;
    background: #fff;
}

.card img {
    height: 140px;             /* ⬅ reduz um pouco a altura */
    max-width: 90%;
    object-fit: contain;

}

/* ===== INPUT MATERIAL ===== */
.input-group-material {
    position: relative;
    margin-bottom: 16px; /* antes: 18px */
}

.input-group-material .material-icons {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #888;
    font-size: 20px;
    pointer-events: none;
}

.input-group-material input {
    width: 100%;
    padding: 14px 14px 14px 46px;
    border-radius: 50px;
    border: 1px solid #ccc;
    font-size: 15px;
    transition: all .2s ease;
}

.input-group-material input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52,152,219,.2);
}

/* ===== BOTÕES ===== */
.btn-material {
    border-radius: 50px;
    padding: 16px;        /* antes: 16px */
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all .25s ease;
    width: 100%;
    border: none;
}

.btn-material:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-aluno {
    background-color: #2ecc71;
    color: #fff;
}

.btn-aluno:hover {
    background-color: #27ae60;
}



.recuperar-senha {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #6b7280;
}

.btn-material {
    margin-top: 2px;   /* aproxima do input */
}

.titulo-agenda {
    font-size: 1.6rem;
    font-weight: 700;
    color: #7d9587;              /* verde escola */
    letter-spacing: 0.6px;
}

.subtitulo-agenda {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 14px;
}

.recuperar-senha a {
    font-size: 14px;
    color: #0d6efd;
    text-decoration: none;
}

.recuperar-senha a:hover {
    text-decoration: underline;
}