/* Styles page de connexion */
.login-section {
    min-height: calc(100vh - 65px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9ff;
}

.login-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 40px 50px;
    max-width: 420px;
    width: 100%;
}

.login-card .logo {
    width: 60px;
    margin: 0 auto 20px;
}

.login-card h1 {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.login-card p {
    text-align: center;
    color: #6c757d;
    margin-bottom: 30px;
}

.login-card .form-control {
    border-radius: 8px;
    padding: 12px 16px;
}

.login-card .btn-primary {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
}

.login-card .extra-links {
    text-align: center;
    margin-top: 20px;
}
.login-card .extra-links a {
    color: var(--primary-color);
    text-decoration: none;
}
.login-card .extra-links a:hover { text-decoration: underline; } 

.social-btn-google {
    background: #fff;
    border: 1px solid #e5e5e5;
    color: #555;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s ease;
    text-decoration: none;
    cursor: pointer;
}
.social-btn-google:hover {
    background: #f1f1f1;
    text-decoration: none;
}
.social-btn-google i {
    color: #ea4335;
} 