body.login-page {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #eef2f7;
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.login-container {
    width: 100%;
    max-width: 1150px;
    min-height: 650px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);
}

/* LEFT */

.login-left {
    width: 50%;
    background:
        linear-gradient(135deg,
            #2563eb 0%,
            #1e40af 100%);

    color: #fff;
    padding: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-left::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.login-left::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    bottom: -120px;
    left: -120px;
}

.left-content {
    position: relative;
    z-index: 2;
}

.left-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.left-content p {
    font-size: 17px;
    opacity: .9;
    line-height: 1.7;
}

.feature-list {
    margin-top: 40px;
}

.feature-item {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.feature-item i {
    margin-right: 12px;
    font-size: 18px;
}

/* RIGHT */

.login-right {
    width: 50%;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.login-card {
    width: 100%;
    max-width: 420px;
}

.logo-area {
    text-align: center;
    margin-bottom: 35px;
}

.logo-area img {
    width: 95px;
    height: 95px;
    object-fit: contain;
    background: #fff;
    border-radius: 20px;
    padding: 10px;
    box-shadow:
        0 6px 20px rgba(0, 0, 0, .08);
}

.logo-area h3 {
    margin-top: 18px;
    font-size: 28px;
    font-weight: 700;
    color: #111827;
}

.logo-area p {
    color: #6b7280;
    margin-top: 8px;
}

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

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #374151;
}

.form-control {
    height: 54px;
    border-radius: 14px;
    border: 1px solid #dbe2ea;
    padding: 0 16px;
    font-size: 15px;
    box-shadow: none !important;
}

.form-control:focus {
    border-color: #2563eb;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 16px;
    top: 17px;
    cursor: pointer;
    color: #6b7280;
}

.login-btn {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 14px;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    transition: .2s;
}

.login-btn:hover {
    background: #1d4ed8;
}

.forgot-link {
    font-size: 14px;
    color: #2563eb;
}

.login-footer {
    text-align: center;
    margin-top: 25px;
    color: #9ca3af;
    font-size: 14px;
}

.language-box {
    position: absolute;
    top: 25px;
    right: 25px;
}

.img-logo-language {
    width: 22px;
    height: 22px;
}

/* ERROR */

.invalid-feedback {
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
    display: block !important;
}

.is-invalid {
    border-color: #ef4444 !important;
}

/* MOBILE */

@media(max-width:991px) {

    .login-container {
        flex-direction: column;
        min-height: auto;
    }

    .login-left {
        width: 100%;
        padding: 40px 30px;
        display: none;
    }

    .login-right {
        width: 100%;
        padding: 40px 25px;
    }

    .left-content h2 {
        font-size: 32px;
    }
}