.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #330050 0%, #024089 100%);
    background-size: cover;
}
.dashboard-footer {
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center; 
    margin-bottom: 30px;      /* espaço abaixo da logo */
}
.logo-wrapper svg {
    width: 80%;
    height: auto;
    display: block;
    margin-left: 8%;
}

.logo-svg-container {
    width: 200px;         
    max-width: 200px;    
    background: white;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-svg-container svg {
    width: 100% !important;  /* ocupa toda a largura do container */
    height: auto !important; /* mantém proporção */
    display: block;
}
.login-form {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 480px;
}

.login-form h1 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 700;
}

.login-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 25px;
    text-align: center;
}

/* Responsividade Login */
@media (max-width: 576px) {
    .login-form {
        padding: 25px;
    }
    
    .login-form h1 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .logo-svg-container {
        width: 240px;
        height: 100px;
        padding: 15px;
    }
    
    .logo-svg-container svg {
        height: 60px;
    }
}

@media (max-width: 400px) {
    .login-form h1 {
        font-size: 1.3rem;
    }
    
    .logo-svg-container {
        width: 200px;
        height: 90px;
    }
}

.flash-message {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.flash-danger {
    color: var(--danger-text);
    background-color: var(--danger-bg);
    border-color: var(--danger-border);
}

.flash-success {
    color: var(--success-text);
    background-color: var(--success-bg);
    border-color: var(--success-border);
}

.flash-info {
    color: var(--info-text);
    background-color: var(--info-bg);
    border-color: var(--info-border);
}