/* Paleta de cores do seu sistema */
:root {
    --mouse-primary: #1a1a1a;
    --mouse-secondary: #d4a574;
    --mouse-accent: #c8956d;
    --mouse-light-beige: #f5f1eb;
    --mouse-success: #27ae60;
    --mouse-warning: #f39c12;
    --mouse-danger: #e74c3c;
    --mouse-light: #ecf0f1;
    --mouse-dark: #2d2d2d;
}

/* --- NOVO DESIGN DO BODY --- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(-45deg, #1d1d1d, #2d2d2d, #1a1a1a, #3c3c3c);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animação do fundo */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
}

/* --- CARD DE LOGIN COM EFEITO VIDRO --- */
.login-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* --- LADO ESQUERDO (BRANDING) REFINADO --- */
.login-left {
    color: white;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.logo-container {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    border-radius: 20px;
}

.login-left h2 {
    font-weight: 700 !important;
    letter-spacing: 1px;
}

.login-left h4 {
    font-weight: 300 !important;
    color: var(--mouse-secondary);
}

/* --- LADO DIREITO (FORMULÁRIO) --- */
.login-right {
    padding: 50px 40px;
    background: #ffffff;
}

.form-control {
    border: none;
    border-bottom: 2px solid #e9ecef;
    border-radius: 0;
    padding: 15px 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.form-control:focus {
    background-color: transparent;
    box-shadow: none;
    border-bottom-color: var(--mouse-secondary);
}

.form-floating > label {
    color: #6c757d;
    font-weight: 500;
}

/* --- BOTÃO DE LOGIN COM NOVA ANIMAÇÃO --- */
.btn-login {
    background: linear-gradient(135deg, var(--mouse-secondary), var(--mouse-accent));
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.3);
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.5);
    color: white;
}

.form-check-input:checked {
    background-color: var(--mouse-secondary);
    border-color: var(--mouse-secondary);
}

.forgot-password {
    color: var(--mouse-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: var(--mouse-accent);
    text-decoration: underline;
}

.version-info {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

@media (max-width: 991px) {
    .login-left {
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
}
