body {
    background-color: #F5F5F5;
    font-family: 'Segoe UI', sans-serif;
}

.navbar-brand {
    color: #FFFFFF !important;
    font-size: 1.3rem;
}

.card {
    border-radius: 12px;
    background: #FFFFFF;
}

.card-title {
    color: #0A1A33;
    font-weight: 600;
}

footer {
    font-size: 0.9rem;
}


/* ============================
   TRADO LOGIN – PREMIUM STYLE
   ============================ */

.trado-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0b1c33, #020c1b);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.trado-login-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    padding: 3rem;
    border-radius: 18px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

.trado-login-brand {
    text-align: center;
    margin-bottom: 2rem;
}

    .trado-login-brand h1 {
        margin: 0;
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .trado-login-brand p {
        margin-top: .4rem;
        font-size: .95rem;
        color: #6b7280;
    }

.trado-form-group {
    margin-bottom: 1.2rem;
}

.trado-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-size: 1rem;
    transition: all .2s ease;
}

    .trado-input:focus {
        outline: none;
        border-color: #2563eb;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    }

.trado-login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .9rem;
    margin-bottom: 1.6rem;
}

    .trado-login-options a {
        color: #2563eb;
        text-decoration: none;
    }

.trado-remember {
    display: flex;
    align-items: center;
    gap: .4rem;
}

.trado-btn-primary {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #2563eb;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

    .trado-btn-primary:hover {
        background: #1e40af;
        transform: translateY(-1px);
    }

.trado-login-footer {
    margin-top: 1.8rem;
    text-align: center;
    font-size: .9rem;
}

    .trado-login-footer a {
        color: #2563eb;
        text-decoration: none;
    }

    .trado-login-footer .small {
        margin-top: .5rem;
        font-size: .8rem;
        color: #6b7280;
    }


/* ============================
   TRADO – ANIMATIONS
   ============================ */

.trado-animate {
    animation: tradoFadeSlide 0.6s ease-out both;
}

@keyframes tradoFadeSlide {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================
   MOBILE FRIENDLY
   ============================ */

@media (max-width: 480px) {
    .trado-login-card {
        padding: 2rem 1.5rem;
        border-radius: 14px;
    }

    .trado-login-brand h1 {
        font-size: 1.6rem;
    }

    .trado-login-brand p {
        font-size: .85rem;
    }
}
