/* Estilos Específicos da Página de Login */
.login-page {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #001a33 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 400px;
    animation: fadeIn 0.8s ease-out;
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo img {
    max-width: 250px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.login-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.login-box h2 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-align: center;
}

.login-box p {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 30px;
}

/* Inputs Estilizados */
.input-group { margin-bottom: 20px; }
.input-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #444; }

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--primary-color);
}

.input-wrapper input {
    width: 100%;
    padding: 12px 12px 12px 45px;
    border: 2px solid #eee;
    border-radius: 10px;
    outline: none;
    transition: 0.3s;
}

.input-wrapper input:focus {
    border-color: var(--primary-color);
}

/* Opções e Botão */
.login-options {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 25px;
    color: #666;
}

.login-options a { color: var(--primary-color); text-decoration: none; }

.btn-login {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.login-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 0.85rem;
}

.login-footer hr { border: 0; border-top: 1px solid #eee; margin: 20px 0; }
.support-text { color: #28a745; }

/* Animação de Entrada */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade */
@media (max-width: 480px) {
    .login-box { padding: 30px 20px; }
}