 .login__modal {
    .modal-dialog {
      max-width: 750px;

      .modal-content {
        width: 100%;
        min-height: 422px;
        background-image: url("/assets/images/login-bg.png");
        background-size: cover;
        background-position: center;

        .modal-header {
          height: 10px;
          display: flex;
          justify-content: flex-end;
          border: none;

          i {
            font-size: 16px;
            width: 10px;
            height: 10px;
            color: #000;
            cursor: pointer;
          }
        }

        .modal-body {
          width: 100%;
          padding: 0 20px 20px 20px;
          margin: 0;

          .ads {
            height: 100%;

            .ads__list {
              margin-top: 20px;

              .ads__item {
                height: 100px;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                justify-content: center;
                color: #003f74;
                font-size: 16px;
                color: #003f74;

                i {
                  font-size: 32px;
                }
              }
            }

            .slogan {
              height: 40px;
              display: flex;
              align-items: center;
              font-size: 20px;
              margin-top: 30px;
              font-weight: bold;
              color: #e84d1c;

              i {
                font-size: 42px;
                color: #e84d1c;
                margin-right: 10px;
              }
            }
          }

          .form {
            height: 100%;
            background-color: #e9f3fd;
            padding: 20px;
            border-radius: 4px;

            .nav {
              display: flex;
              justify-content: space-around;
            }

            .nav-link {
              color: #000;
              font-weight: 500;
              text-transform: uppercase;
              font-weight: bold;
              font-size: 18px;
              color: rgba(0, 63, 116, 0.5);
              padding: 5px;
              margin: 0;
            }

            .active {
              font-weight: 700;
              color: #003f74;
              border-radius: 4px;
              background-color: unset;
            }

            form {
              input {
                border-radius: 0;
              }

              input::placeholder {
                color: #99a0b7;
              }

              button {
                border-radius: 0;
                text-transform: uppercase;
                background: linear-gradient(43deg, #003f74 0%, #0387f4 100%);
              }

              .after__password {
                font-size: 12px;
                color: #99a0b7;

                a {
                  color: #99a0b7;
                }
              }

              .btn-close {
                background: none;
              }
            }

            .register {
              height: 60px;
              display: flex;
              justify-content: flex-end;
              align-items: flex-end;

              p {
                font-size: 12px;
                text-align: right;
                color: #99a0b7;

                a {
                  color: #003f74;
                }
              }
            }
          }
        }
      }
    }
  }


    /* ===== Full-screen Layout ===== */
    .login-page {
        margin: 0;
        padding: 0;
        position: relative;
    }

    .login__back-home {
        position: fixed;
        top: 24px;
        left: 24px;
        z-index: 100;
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 8px 16px;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(8px);
        color: #003f74;
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .login__back-home:hover {
        background: #fff;
        color: #0387f4;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    .login__back-home i {
        font-size: 14px;
    }

    .login__full {
        display: flex;
        min-height: 100vh;
    }

    /* ===== Left: Brand Panel (full-height) ===== */
    .login__brand {
        flex: 1;
        background: linear-gradient(135deg, #003F74 0%, #0387F4 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .login__brand::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.03);
        top: -120px;
        right: -120px;
    }

    .login__brand::after {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.04);
        bottom: -80px;
        left: -60px;
    }

    .login__brand-inner {
        position: relative;
        z-index: 1;
        padding: 40px;
        max-width: 400px;
    }

    .login__logo {
        margin-bottom: 48px;
    }

    .login__logo img {
        height: 44px;
        filter: brightness(0) invert(1);
    }

    .login__ads-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }

    .login__ads-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        opacity: 0.9;
    }

    .login__ads-item i {
        font-size: 24px;
        opacity: 0.85;
    }

    .login__slogan {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 22px;
        font-weight: 700;
        color: #FFD666;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 28px;
    }

    .login__slogan i {
        font-size: 40px;
        color: #FFD666;
    }

    .login__slogan div div {
        font-size: 14px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.75);
        margin-top: 4px;
    }

    /* ===== Right: Form Area (full-height) ===== */
    .login__form-area {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #F5F8FC;
    }

    .login__form-inner {
        width: 100%;
        max-width: 420px;
        padding: 40px;
    }

    .login__form-title {
        font-size: 24px;
        font-weight: 700;
        color: #003f74;
        margin-bottom: 32px;
    }

    /* ===== Form Controls ===== */
    .login__form-inner .form-floating > .form-control {
        border-radius: 4px;
        border-color: #d0d8e8;
        font-size: 14px;
        height: 52px;
    }

    .login__form-inner .form-floating > .form-control:focus {
        border-color: #0066cc;
        box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    }

    .login__form-inner .form-floating > label {
        font-size: 13px;
        color: #8a9bb5;
        line-height: 1.5;
    }

    .login__form-inner .password-field {
        position: relative;
    }

    .login__form-inner .password-toggle {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #8a9bb5;
        cursor: pointer;
        padding: 4px;
        z-index: 10;
        font-size: 16px;
        line-height: 1;
        transition: color 0.15s ease;
    }

    .login__form-inner .password-toggle:hover {
        color: #003f74;
    }

    .login__form-inner .password-field .form-control {
        padding-right: 44px;
    }

    .login__options {
        font-size: 13px;
    }

    .login__options .form-check-label {
        color: #8a9bb5;
    }

    .login__forgot {
        font-size: 13px;
        color: #8a9bb5;
        text-decoration: none;
    }

    .login__forgot:hover {
        color: #003f74;
    }

    .login__btn {
        width: 100%;
        border-radius: 4px;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.04em;
        background: linear-gradient(43deg, #003f74 0%, #0387f4 100%);
        border: none;
        padding: 12px;
        font-size: 14px;
        transition: opacity 0.2s ease;
    }

    .login__btn:hover {
        opacity: 0.9;
    }

    .login__btn:disabled {
        opacity: 0.7;
    }

    .login__register {
        margin-top: 24px;
        text-align: center;
    }

    .login__register p {
        font-size: 13px;
        color: #8a9bb5;
        margin: 0;
    }

    .login__register a {
        font-size: 13px;
        color: #003f74;
        font-weight: 600;
        text-decoration: none;
    }

    .login__register a:hover {
        text-decoration: underline;
    }

    .login__form-inner .alert {
        font-size: 13px;
        border-radius: 4px;
        padding: 10px 14px;
    }