/* Sobrescreve apenas o necessário para o login */
body {
    background: var(--bg-gradient);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.form-control::placeholder {
    color: #888 !important;
    opacity: 0.55 !important;
}
.login-card {
    background: #fff;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow);
    max-width: 400px;
    margin: 60px auto;
    padding: 38px 32px 32px 32px;
    position: relative;
    z-index: 1;
}
.login-title {
    font-size: 1.7rem;
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 18px;
    text-align: center;
}
.form-label {
    font-weight: 500;
    color: #222;
    font-size: 0.93rem; /* diminui a fonte */
}
.form-control {
    height: 52px; /* aumenta a altura */
    font-size: 1rem;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px #6c63ff33;
}
.btn-login {
    background: var(--primary);
    color: #fff;
    border-radius: 22px;
    padding: 10px 0;
    font-size: 1.08rem;
    font-weight: 600;
    border: none;
    width: 100%;
    margin-top: 10px;
    transition: background 0.2s;
}
.btn-login:hover, .btn-login:focus {
    background: #4834d4;
}
.login-link {
    display: block;
    text-align: center;
    margin-top: 18px;
    color: var(--primary);
    font-size: 1rem;
    text-decoration: underline;
}
.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}
.login-logo img {
    width: 54px;
    height: 54px;
    border-radius: 16px;
}
.footer {
    text-align: center;
    color: #4a5568;
    font-size: 0.98rem;
    padding: 18px 0 10px 0;
    font-family: 'Roboto', Arial, sans-serif;
    opacity: 0.8;
    background: #fff;
    box-shadow: 0 -2px 12px rgba(44,62,80,0.04);
    margin-top: auto;
}
@media (max-width: 500px) {
    .login-card {
        padding: 18px 8px 18px 8px;
        margin: 32px 8px;
    }
    .login-title {
        font-size: 1.2rem;
    }
}
