/* ==========================================
   JTC Admin - Login Page Styling
   (Kenya Flag Color Palette Theme)
   ========================================== */

body.login-body {
    font-family: 'Inter', sans-serif;
    background-color: #0f1419;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px;
}

.login-card-container {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 420px;
    overflow: hidden;
    border-top: 4px solid #b91c1c; /* Kenya Flag Red Top Accent */
    border-bottom: 3px solid #15803d; /* Kenya Flag Green Bottom Accent */
}

.login-banner-header {
    background-color: #000000;
    padding: 0;
    text-align: center;
    width: 100%;
    border-bottom: 3px solid #b91c1c;
}

.login-banner-header img {
    width: 100%;
    height: auto;
    max-height: 110px;
    object-fit: cover;
    display: block;
}

.login-card-body {
    padding: 32px 36px 28px 36px;
}

.login-card-body h4 {
    color: #b91c1c; /* Kenya Flag Red */
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 24px;
    text-align: left;
}

.jtc-login-input {
    background-color: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
    font-size: 0.95rem;
    height: 44px;
    border-radius: 4px;
    padding: 10px 14px;
    margin-bottom: 20px;
    transition: all 0.2s ease;
}

.jtc-login-input:focus {
    border-color: #15803d !important; /* Kenya Flag Green focus */
    box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.25) !important;
    background-color: #ffffff !important;
    outline: none !important;
}

.btn-jtc-submit {
    background: linear-gradient(135deg, #15803d 0%, #166534 100%) !important; /* Kenya Flag Green */
    border: none !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1rem;
    height: 44px;
    border-radius: 4px;
    width: 100%;
    margin-top: 8px;
    box-shadow: 0 3px 8px rgba(21, 128, 61, 0.35);
    transition: all 0.2s ease;
}

.btn-jtc-submit:hover {
    background: linear-gradient(135deg, #166534 0%, #14532d 100%) !important;
    box-shadow: 0 5px 12px rgba(21, 128, 61, 0.45);
    transform: translateY(-1px);
}

.login-footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    font-size: 0.9rem;
}

.login-footer-links a {
    color: #15803d;
    text-decoration: none;
    font-weight: 600;
}

.login-footer-links a:hover {
    text-decoration: underline;
    color: #b91c1c;
}
