/* Login Page Styles */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 1rem;
}

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

.login-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    overflow: hidden;
}

.login-header {
    background: #343a40;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.login-header h1 {
    margin: 0;
    color: #e50914;
    font-size: 2rem;
}

.login-header p {
    margin: 0.5rem 0 0;
    opacity: 0.8;
}

.login-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
}

.form-group label i {
    margin-right: 0.5rem;
    color: #e50914;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #e50914;
    outline: none;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-button {
    width: 100%;
    padding: 1rem;
    background: #e50914;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-button:hover {
    background: #b2070f;
}

.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Styles pour le lien d'inscription */
.register-link {
    padding: 0 2rem 2rem;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 1.5rem;
}

.register-link p {
    margin: 1.5rem 0 1rem;
    color: #666;
}

.register-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #343a40;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.register-button:hover {
    background: #23272b;
    color: #fff;
    text-decoration: none;
} 