/* ===== PASTE YOUR THEME CSS HERE ===== */
:root{
  --orange: #ff7a00;
  --dark: #0f172a;
  --muted: #6b7280;
  --card: #ffffff;
  --bg: #f7f8fb;
  --radius: 14px;
  --glass: rgba(15,23,42,0.03);
  --shadow: 0 8px 28px rgba(15,23,42,0.06);
  --text-dark: #0f172a;
  --error-bg: #fef2f2;
  --error-text: #dc2626;
}

*{box-sizing:border-box;margin:0;padding:0;font-family:"Poppins",sans-serif;}

body {
    background: var(--bg);
    color: var(--text-dark);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.brand {
    font-weight: 800;
    color: var(--orange);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}
.brand i { font-size: 28px; }

.login-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(15,23,42,0.04);
    width: 100%;
    max-width: 420px;
    animation: fadeInUp 0.5s ease-out;
}

h2 {
    text-align: center;
    color: var(--dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}
p.subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 30px;
}

.form-group { margin-bottom: 18px; }

label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    background: #fcfcfc;
    font-size: 14px;
    transition: all 0.2s;
    outline: none;
}

.input:focus {
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.btn {
    width: 100%;
    background: var(--orange);
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(255,122,0,0.15);
    transition: transform 0.1s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.err {
    background: var(--error-bg);
    color: var(--error-text);
    padding: 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.footer-link {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--muted);
}
.footer-link a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .login-card { padding: 30px 24px; }
}