@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");

body,
input,
button,
select,
textarea {
    font-family: "Plus Jakarta Sans", sans-serif !important;
}

body {
    background: #f8fafc;
    margin: 0;
    font-weight: 500;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.login-page {
    min-height: 100vh;
    margin: 0;
    --bs-gutter-x: 0;
}

.left-panel {
    min-height: 100vh;
    background: linear-gradient(160deg, #1e3a8a, #1e293b);
    color: white;
    overflow: hidden;
}

.left-panel::before {
    content: "";
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    position: absolute;
    left: -120px;
    top: -120px;
}

.left-panel::after {
    content: "";
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    position: absolute;
    bottom: -120px;
    right: -80px;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.circle1 {
    width: 70px;
    height: 70px;
    bottom: 80px;
    left: 80px;
}

.circle2 {
    width: 120px;
    height: 120px;
    top: 100px;
    right: 70px;
}

.dots {
    position: absolute;
    width: 90px;
    height: 90px;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.4) 1.5px,
        transparent 1.5px
    );
    background-size: 16px 16px;
}

.dots-top {
    top: 70px;
    left: 70px;
}

.dots-bottom {
    bottom: 60px;
    right: 70px;
}

.logo {
    width: 140px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.title {
    font-size: 55px;
    font-weight: 800 !important;
    letter-spacing: -2px;
}

.subtitle {
    color: #cbd5e1;
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
}

.line {
    width: 80px;
    height: 4px;
    border-radius: 50px;
    background: #60a5fa;
    margin: 25px auto;
}

.quote {
    color: #cbd5e1;
    font-style: italic;
    font-weight: 500;
}

.login-card {
    max-width: 470px;
    width: 100%;
}

.card {
    border: none;
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.08);
}

.card h2,
.fw-bold {
    font-weight: 800 !important;
}

.form-label,
.fw-semibold {
    font-weight: 700 !important;
}

.text-secondary {
    font-weight: 500;
}

.form-control {
    height: 52px;
    border-radius: 12px;
    font-weight: 500;
}

.form-control:focus {
    box-shadow: none;
    border-color: #3b82f6;
}

.input-group-text {
    font-weight: 500;
}

.btn-login {
    height: 52px;
    border-radius: 12px;
    background: #2563eb;
    border: none;
    font-weight: 700 !important;
}

.btn-login:hover {
    background: #1d4ed8;
}

@media (max-width: 992px) {
    .left-panel {
        display: none;
    }
}