/* Shinobi Auth - Login/Consent page styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 1rem;
}

.login-card {
    background: #1e293b;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.login-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
}

.alert {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}
.alert-error { background: #7f1d1d; color: #fca5a5; }
.alert-success { background: #14532d; color: #86efac; }

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.375rem;
    color: #94a3b8;
}

.form-group input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #334155;
    border-radius: 8px;
    background: #0f172a;
    color: #f1f5f9;
    font-size: 0.9375rem;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.btn {
    display: inline-block;
    width: 100%;
    padding: 0.625rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
    margin-bottom: 0.5rem;
}

.btn-primary { background: #3b82f6; color: #fff; }
.btn-primary:hover { background: #2563eb; }
.btn-secondary { background: #475569; color: #f1f5f9; }
.btn-secondary:hover { background: #64748b; }

.social-login { margin-top: 1.5rem; }

.divider {
    text-align: center;
    margin-bottom: 1rem;
    color: #64748b;
    font-size: 0.8125rem;
}
.divider span {
    background: #1e293b;
    padding: 0 0.75rem;
    position: relative;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-social {
    font-size: 0.875rem;
    padding: 0.5rem;
}

.btn-google { background: #ea4335; color: #fff; }
.btn-google:hover { background: #d33426; }
.btn-facebook { background: #1877f2; color: #fff; }
.btn-facebook:hover { background: #166fe5; }
.btn-microsoft { background: #00a4ef; color: #fff; }
.btn-microsoft:hover { background: #0093d6; }

.consent-desc {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}
