/* Page Connexion Styles */

.login-page {
    background-color: #1a1a1a;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.login-page .container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
}

.login-container {
    background-color: #2a2a2a;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h1 {
    color: #FFDD03;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.login-header p {
    color: #ccc;
    font-size: 16px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group label {
    color: #fff;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.form-group input {
    width: 100%;
    padding: 18px;
    background-color: #333;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #FFDD03;
    box-shadow: 0 0 0 2px rgba(255, 221, 3, 0.2);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-options label {
    color: #ccc;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.form-options input[type="checkbox"] {
    accent-color: #FFDD03;
}

.form-options a {
    color: #FFDD03;
    font-size: 14px;
    text-decoration: none;
}

.form-options a:hover {
    text-decoration: underline;
}

.login-btn {
    background-color: #FFDD03;
    color: #000;
    padding: 18px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.login-btn:hover {
    background-color: #e5c700;
}

.login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.register-link {
    text-align: center;
    margin-top: 20px;
}

.register-link p {
    color: #ccc;
    font-size: 14px;
}

.register-link a {
    color: #FFDD03;
    text-decoration: none;
    font-weight: 500;
}

.register-link a:hover {
    text-decoration: underline;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    z-index: 1000;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    max-width: 300px;
    transition: opacity 0.3s ease;
}

.notification-success {
    background-color: #28a745;
    color: white;
}

.notification-error {
    background-color: #dc3545;
    color: white;
}

.notification-warning {
    background-color: #ffc107;
    color: #000;
}

.notification-info {
    background-color: #17a2b8;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .login-page {
        padding: 40px 0;
    }
    
    .login-container {
        padding: 30px 20px;
    }
    
    .login-header h1 {
        font-size: 28px;
    }
}


