/* TFC Admin — Login (Navy SaaS) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", sans-serif;
    background: #16335c;
    background-image: linear-gradient(135deg, #16335c 0%, #0f2547 60%, #1f4072 100%);
}

/* Subtle Filipino-flag accent strip behind the card */
.login-card {
    width: 100%;
    max-width: 380px;
    border: none;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    background: #ffffff;
    padding: 2.25rem !important;
    position: relative;
    overflow: hidden;
}
.login-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, #16335c 0 33%, #f2b01e 33% 66%, #d62828 66% 100%);
}

.welcome-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}
.login-card .subtitle {
    text-align: center;
    color: #64748b;
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
}

.login-card .form-control {
    border-radius: 10px;
    border: 1.5px solid #e6eaf0;
    padding: 0.7rem 0.9rem;
    font-size: 0.95rem;
}
.login-card .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
}

.login-btn {
    border-radius: 10px;
    background: #16335c;
    border: none;
    font-weight: 600;
    padding: 0.7rem;
    transition: background 0.2s ease;
}
.login-btn:hover { background: #0f2547; }

.signup-text a { color: #2563eb; text-decoration: none; font-weight: 600; }
.signup-text a:hover { text-decoration: underline; }
