/* ==========================================================================
   TMS — Login (Indigo / Violet)
   ========================================================================== */

:root {
    --bs-primary: #6366f1;
    --bs-primary-rgb: 99, 102, 241;
    --bs-link-color: #4f46e5;
    --bs-link-hover-color: #4338ca;
}

body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    background-color: #f6f7fb;
    min-height: 100vh;
}

.btn-primary {
    --bs-btn-bg: #6366f1;
    --bs-btn-border-color: #6366f1;
    --bs-btn-hover-bg: #4f46e5;
    --bs-btn-hover-border-color: #4f46e5;
    --bs-btn-active-bg: #4338ca;
    --bs-btn-active-border-color: #4338ca;
}

.login-wrapper {
    min-height: 100vh;
}

.login-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.login-left {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 60px;
}
.login-left h1 {
    font-weight: 700;
}

.login-right {
    padding: 50px;
    background: white;
}

.form-control {
    height: 48px;
    border-radius: 10px;
}
.form-control:focus {
    border-color: #a5b4fc;
    box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.12);
}

.btn-login {
    height: 48px;
    border-radius: 10px;
    font-weight: 600;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
}
.btn-login:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.brand-logo {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .login-left {
        display: none;
    }
    .login-right {
        padding: 35px;
    }
}
