/* ===== TELA DE LOGIN MODERNA ===== */

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: url('../assets/images/bg-login.jpg') no-repeat center center fixed;
    background-size: cover;
    background-color: #f8f9fa; /* Fallback */
    min-height: 100vh;
}

/* Overlay opcional para escurecer fundo */
.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

/* Card de login */
.login-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
}

/* Ícones nos inputs */
.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #b59855;
    font-size: 1.1rem;
    z-index: 2;
}

/* Botão dourado */
.btn-accent {
    background-color: #b59855;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: #a08540;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(181, 152, 85, 0.3);
}

/* Efeito hover em links */
.hover-accent:hover {
    color: #b59855 !important;
    text-decoration: underline !important;
}

/* Responsividade */
@media (max-width: 500px) {
    .login-container {
        padding: 20px;
    }
    .login-card {
        padding: 1.5rem;
    }
    .input-icon {
        left: 10px;
    }
    .form-control {
        font-size: 0.95rem;
    }
}