.login-container {
    align-items: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.14), transparent 32%),
        radial-gradient(circle at 80% 10%, rgba(15, 118, 110, 0.12), transparent 28%),
        linear-gradient(180deg, #f8fafc 0%, #eef3f9 100%);
    display: flex;
    justify-content: center;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 100vh;
    min-height: 100dvh;
    padding: 24px;
    width: 100vw;
}

.login-card {
    background: #ffffff;
    border: 1px solid #e6eaf0;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(340px, 1.05fr);
    max-width: 920px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.login-header {
    background:
        linear-gradient(135deg, rgba(16, 35, 63, 0.95), rgba(28, 63, 110, 0.92)),
        #10233f;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 520px;
    padding: 44px;
    position: relative;
    text-align: center;
}

.login-header::after {
    background: rgba(255, 255, 255, 0.12);
    content: "";
    height: 220px;
    position: absolute;
    right: -96px;
    top: -92px;
    transform: rotate(18deg);
    width: 260px;
}

.login-logo-img {
    height: 168px;
    margin-bottom: 28px;
    object-fit: contain;
    width: 168px;
    position: relative;
    z-index: 1;
}

.login-header h1 {
    font-size: 2.15rem;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
}

.login-header p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.login-body {
    align-self: center;
    padding: 48px 48px 98px;
}

.login-body .form-label {
    color: #344054;
    font-weight: 650;
}

.login-body .form-control,
.login-body .input-group-text {
    background: #f8fafc;
    border-color: #d0d5dd;
}

.login-body .form-control:focus {
    background: #ffffff;
}

.btn-login {
    background: #18345c;
    border: none;
    border-radius: 8px;
    font-weight: 750;
    min-height: 48px;
}

.btn-login:hover {
    background: #2563eb;
}

.login-footer {
    background: #f8fafc !important;
    border-top: 1px solid #e6eaf0;
    bottom: 0;
    left: 47.5%;
    position: absolute;
    right: 0;
}

@media (max-width: 768px) {
    .login-container {
        align-items: flex-start;
        padding: 14px;
    }

    .login-card {
        display: block;
        max-width: 100%;
    }

    .login-header {
        min-height: auto;
        padding: 28px 22px;
    }

    .login-logo-img {
        height: 124px;
        margin-bottom: 18px;
        width: 124px;
    }

    .login-header h1 {
        font-size: 1.65rem;
    }

    .login-body {
        padding: 26px 20px;
    }

    .login-footer {
        position: static;
    }
}
