body.login-page {
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Poppins', sans-serif;
}

/* Style des alertes pour la page de connexion */
body.login-page .alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 320px;
    max-width: 420px;
    width: calc(100% - 40px);
    z-index: 1000;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.login-container {
    max-width: 420px;
    width: 100%;
}

.login-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #555;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.login-header .title {
    font-size: 1.25rem;
    font-weight: 400;
    color: #555;
}

.login-card form {
    text-align: center;
}

.login-card form > div:not(:last-of-type) {
    margin-bottom: 1.25rem;
}

.login-card .form-control {
    text-align: left;
    border-radius: 0.5rem;
    padding: 0.9rem 1rem;
    border: 1px solid #e0e0e0;
}

.btn-login {
    border-radius: 0.5rem;
    padding: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.forgot-password-link {
    font-size: 0.9rem;
}

/* Styles pour les alertes */
.login-card .alert {
    text-align: left;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.login-card .alert:last-child {
    margin-bottom: 2rem;
} 