body { background: #f4dede; margin: 0; font-family: 'Segoe UI', sans-serif; }

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
}

.login-card {
    background: #fff;
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.login-card h2 { margin: 0; color: #333; }
.subtitle { color: #777; font-size: 0.9rem; margin-bottom: 25px; }

/* Social Buttons */
.social-login-grid { display: grid; gap: 10px; margin-bottom: 20px; }
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid #ddd;
    color: #333;
    transition: 0.3s;
}
.social-btn img { width: 18px; }
.social-btn:hover { background: #f8f8f8; }

.divider {
    position: relative;
    margin: 20px 0;
    border-bottom: 1px solid #eee;
}
.divider span {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 10px;
    color: #aaa;
    font-size: 0.8rem;
}

/* Form Styling */
.login-form { text-align: left; }
.input-group { margin-bottom: 15px; }
.input-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 5px; color: #555; }
.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    margin-bottom: 20px;
}
.forgot-link { color: #d63384; text-decoration: none; font-weight: 600; }

.login-submit-btn {
    width: 100%;
    padding: 14px;
    background: #d63384;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}
.login-submit-btn:hover { background: #b8286e; }

.login-footer { margin-top: 20px; font-size: 0.9rem; color: #666; }
.login-footer a { color: #d63384; text-decoration: none; font-weight: 600; }