* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
}

body {
        font-family: 'Poppins', sans-serif;
        overflow: hidden;
}

.login-wrapper {
        display: flex;
        height: 100vh;
}

.login-left {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #f3f6fb 100%);
        padding: 40px 48px;
        position: relative;
        overflow: hidden;
}

.login-left::before {
        content: "";
        position: absolute;
        inset: 22px 36px auto auto;
        width: 120px;
        height: 120px;
        background: radial-gradient(circle, rgba(22, 70, 94, 0.12) 0%, rgba(22, 70, 94, 0) 65%);
        filter: blur(18px);
        opacity: 0.8;
        pointer-events: none;
}

.login-left-content {
        width: 100%;
        max-width: 520px;
        display: flex;
        flex-direction: column;
        gap: 24px;
}

.login-right {
        flex: 1;
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 38%), radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.08), transparent 35%), linear-gradient(140deg, #0e2f41 0%, #16465E 55%, #15516c 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding: 48px;
        color: #fff;
}

.login-box {
        width: 100%;
        max-width: 520px;
        background: #fff;
        border: 1px solid #e7edf5;
        border-radius: 18px;
        padding: 32px;
        box-shadow: 0 20px 50px rgba(12, 55, 91, 0.08);
}

.logo-container {
        text-align: center;
        margin-bottom: 40px;
}

.logo-container img {
        max-width:100px;
        height: auto;
        border-radius: 16px;
}

.login-header h2 {
        font-size: 28px;
        font-weight: 600;
        color: #16465E;
        margin-bottom: 8px;
}

.login-header p {
        color: #6c757d;
        font-size: 14px;
        margin-bottom: 30px;
}

.form-group {
        margin-bottom: 20px;
}

.form-group label {
        display: block;
        margin-bottom: 8px;
        color: #16465E;
        font-size: 14px;
        font-weight: 500;
}

.input-wrapper {
        position: relative;
}

.form-control {
        width: 100%;
        padding: 12px 16px;
        border: 1.5px solid #d0d5dd;
        border-radius: 8px;
        font-size: 14px;
        transition: all 0.3s;
}

.form-control:focus {
        outline: none;
        border-color: #16465E;
        box-shadow: 0 0 0 3px rgba(22, 70, 94, 0.1);
}

.password-toggle {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        color: #6c757d;
}

.btn-login {
        width: 100%;
        padding: 12px;
        background: linear-gradient(135deg, #16465E 0%, #16465E 100%);
        border: none;
        border-radius: 8px;
        color: white;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        transition: transform 0.2s;
        margin-top: 10px;
}

.btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(22, 70, 94, 0.2);
}

.forgot-link {
        text-align: right;
        margin-top: 16px;
}

.forgot-link a {
        color: #16465E;
        font-size: 14px;
        text-decoration: none;
}

.forgot-link a:hover {
        text-decoration: underline;
}

.alert {
        padding: 12px 16px;
        border-radius: 8px;
        margin-bottom: 20px;
        font-size: 14px;
}

.copyright {
        text-align: center;
        margin-top: 30px;
        color: #6c757d;
        font-size: 13px;
}

.login-intro-card {
        background: linear-gradient(135deg, #f9fbff 0%, #f4f8ff 100%);
        border: 1px solid #e0e8f4;
        border-radius: 16px;
        padding: 22px 22px 18px;
        box-shadow: 0 18px 38px rgba(12, 55, 91, 0.08);
        position: relative;
        overflow: hidden;
}

.login-intro-card::after {
        content: "";
        position: absolute;
        inset: auto -60px -80px auto;
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, rgba(55, 143, 191, 0.18) 0%, rgba(55, 143, 191, 0) 65%);
        transform: rotate(-12deg);
}

.badge-row {
        display: flex;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 12px;
}

.pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 7px 12px;
        border-radius: 999px;
        font-size: 12px;
        letter-spacing: 0.2px;
        border: 1px solid transparent;
}

.pill-primary {
        background: rgba(22, 70, 94, 0.12);
        color: #0f3044;
        border-color: rgba(22, 70, 94, 0.18);
        font-weight: 600;
}

.pill-soft {
        background: #fff;
        color: #3c4b5c;
        border-color: #e7edf5;
}

.intro-copy h3 {
        color: #0f3044;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 6px;
}

.intro-copy p {
        color: #4a5b71;
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 12px;
}

.intro-highlights {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
}

.highlight {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 10px;
        padding: 10px 12px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.74);
        border: 1px solid #e7edf5;
}

.highlight-dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        margin-top: 6px;
        background: linear-gradient(135deg, #1bc8ff, #0f3044);
        box-shadow: 0 0 0 6px rgba(27, 200, 255, 0.12);
}

.highlight-title {
        margin: 0;
        color: #0f3044;
        font-weight: 600;
        font-size: 14px;
}

.highlight-desc {
        margin: 3px 0 0 0;
        color: #51657a;
        font-size: 13px;
        line-height: 1.45;
}

.illustration-content {
        position: relative;
        z-index: 1;
        color: #fff;
        text-align: center;
        padding: 32px;
        width: 100%;
        max-width: 680px;
        display: flex;
        flex-direction: column;
        gap: 18px;
}

.illustration-content h1 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 12px;
        color: #fff;
}

.illustration-content p {
        font-size: 15px;
        color: rgba(255,255,255,0.9);
        line-height: 1.6;
        margin-bottom: 8px;
}

.accent-pill {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.9);
        font-size: 12px;
        letter-spacing: 0.3px;
        width: fit-content;
        margin: 0 auto;
}

.accent-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ffcf6f;
}

.brand-logos {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
        margin-top: 6px;
        width: 100%;
}

.brand-card {
        background: #fff;
        border: 1px solid rgba(0,0,0,0.05);
        border-radius: 12px;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 1 150px;
        height: 110px;
        transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.brand-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.brand-card img {
        max-width: 110px;
        max-height: 90px;
        object-fit: contain;
        display: block;
}

.quote-card {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(6px);
        border-radius: 16px;
        padding: 20px 22px;
        color: #fff;
        text-align: left;
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
        position: relative;
        overflow: hidden;
        margin: 6px auto 4px;
        max-width: 580px;
}

.quote-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.08), transparent 40%);
        pointer-events: none;
}

.quote-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.14);
        font-size: 12px;
        letter-spacing: 0.2px;
}

.quote-badge i {
        color: #ffcf6f;
}

.quote-text {
        font-size: 17px;
        line-height: 1.7;
        margin: 14px 0 10px;
        color: #f8fbff;
        min-height: 54px;
        transition: opacity 0.18s ease;
}

.quote-author {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        transition: opacity 0.18s ease;
}

.quote-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 12px;
        gap: 8px;
}

.quote-index {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        display: inline-flex;
        align-items: center;
        gap: 6px;
}

.quote-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #4ee1a0;
        box-shadow: 0 0 0 6px rgba(78, 225, 160, 0.14);
}

.quote-refresh {
        border: 1px solid rgba(255, 255, 255, 0.25);
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
        border-radius: 10px;
        padding: 8px 12px;
        cursor: pointer;
        font-size: 13px;
        transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.quote-refresh:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.floating-shape {
        position: absolute;
        filter: blur(42px);
        opacity: 0.65;
        z-index: 0;
}

.shape-1 {
        width: 280px;
        height: 280px;
        background: #1bc8ff;
        top: -60px;
        right: 10%;
        animation: float 12s ease-in-out infinite;
}

.shape-2 {
        width: 240px;
        height: 240px;
        background: #ff8f70;
        bottom: -80px;
        left: 8%;
        animation: float 14s ease-in-out infinite alternate;
}

@keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-18px); }
        100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
        .login-wrapper {
                flex-direction: column;
        }

        .login-right {
                display: none;
        }

        .login-left {
                padding: 20px;
        }
}
