body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f6f9;
    font-family: Inter, "Segoe UI", sans-serif;
    color: #111827;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.login-header {
    padding: 10px;
    text-align: center;
}

.login-header h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.login-header p {
    margin: 12px auto 0;
    max-width: 300px;
    color: #6b7280;
    line-height: 1.6;
}

.login-body {
    padding: 0 32px 34px;
}

.form-group {
    margin-bottom: 16px;
}

.form-control {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 14px 18px;
    font-size: 0.96rem;
    color: #111827;
    background: #f9fafb;
}

.form-control:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 0.15rem rgba(99, 102, 241, 0.18);
    background: #ffffff;
}

.forgot-link {
    color: #6366f1;
    text-decoration: none;
    font-size: 0.92rem;
    white-space: nowrap;
}

.btn-primary {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border: none;
    border-radius: 16px;
    background: #5b49e3;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary:hover {
    background: #4b3edf;
}

.divider {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #9ca3af;
    font-size: 0.94rem;
    margin: 28px 0 18px;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.social-grid {
    display: grid;
    gap: 12px;
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 12px 14px;
    text-decoration: none;
    font-weight: 600;
    color: #374151;
    background: #ffffff;
}

.social-button svg {
    width: 18px;
    height: 18px;
    display: block;
}

.login-footer {
    margin-top: 18px;
    text-align: center;
    color: #6b7280;
    font-size: 0.93rem;
}

.login-footer a {
    color: #5b49e3;
    text-decoration: none;
    font-weight: 600;
}

#infoMessage {
    min-height: 1.4em;
    margin-bottom: 12px;
    color: #dc2626;
    font-size: 0.95rem;
}

.auth-card__brand {
    text-align: center;
    padding: 10px;
}

.auth-card__brand img {
    display: block;
    max-width: 220px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.fixblr-logo {
    font-family: "Segoe UI", Montserrat, Arial, sans-serif;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: 0.02em;
}

.fixblr-logo__fix { color: #2b2b2b; }
.fixblr-logo__blr { color: #2ec4b6; }
