body {
    background-color: #121212;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-card {
    background: #1c1c1e;
    width: 100%;
    max-width: 380px;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.logo {
    font-size: 48px;
    margin-bottom: 16px;
}

h1 {
    font-size: 24px;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.subtitle {
    color: #8e8e93;
    font-size: 15px;
    margin: 0 0 32px 0;
}

/* Buttons */
.social-btn {
    width: 100%;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.1s;
}

.social-btn:hover {
    background: #f2f2f2;
}

.social-btn:active {
    transform: scale(0.98);
}

.divider {
    margin: 24px 0;
    position: relative;
    text-align: center;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: #3a3a3c;
}

.divider span {
    background: #1c1c1e;
    padding: 0 10px;
    color: #636366;
    font-size: 12px;
    font-weight: 600;
    position: relative;
}

/* Form */
.input-group {
    margin-bottom: 12px;
}

input {
    width: 100%;
    background: #2c2c2e;
    border: 1px solid #3a3a3c;
    padding: 14px;
    border-radius: 12px;
    color: white;
    font-size: 15px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}

input:focus {
    border-color: #AB9FF2;
}

.primary-btn {
    width: 100%;
    background: #AB9FF2;
    color: #000;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.primary-btn:hover {
    background: #9b72cb;
}

.status {
    margin-top: 20px;
    font-size: 13px;
    color: #AB9FF2;
    min-height: 20px;
}