    .login-header {
      text-align: center;
      margin-top: 4px;
      margin-bottom: 4px;
    }

    .logo-box {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 192px;
      height: 192px;
      border-radius: 28px;
      background: #ffffffcc;
      box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
      backdrop-filter: blur(6px);
      margin-bottom: 10px;
    }

    .logo-box img {
      width: 128px;
      height: auto;
      display: block;
    }

    /* =========================
       6) LOGIN CARD
       ========================== */

    .login-card {
      background: #fff;
      border-radius: 20px;
      padding: 20px 18px 18px;
      box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
    }

    .login-card h2 {
      font-size: 15px;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--dayan-blue);
    }

    .login-card h2 i {
      font-size: 18px;
      color: var(--accent);
    }

    .form-label {
      font-size: 13px;
      color: var(--gray);
      margin-bottom: 4px;
    }

    .input-wrapper {
      position: relative;
    }

    .form-control {
      background: #fff;
      border-radius: 12px;
      border: 1px solid #e4e7ec;
      height: 46px;
      padding-right: 12px;
      padding-left: 36px;
      font-size: 15px;
      transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
    }

    .form-control:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 2px rgba(43, 178, 168, 0.25);
    }

    .form-control-ltr {
      direction: ltr;
      /* جهت تایپ و حرکت کرسر */
      text-align: left;
      /* متن وارد شده از چپ شروع شود */
    }

    .form-control-ltr::placeholder {
      direction: rtl;
      /* متن placeholder راست‌به‌چپ */
      text-align: right;
      /* خود placeholder بچسبد به راست */
    }

    .input-wrapper .field-icon {
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 16px;
      color: var(--gray);
      pointer-events: none;
    }

    .input-wrapper .toggle-password {
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 16px;
      color: var(--gray);
      cursor: pointer;
      pointer-events: auto;
    }

    .helper-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 6px;
      margin-bottom: 10px;
      font-size: 11px;
      color: var(--gray);
    }

    .helper-row .remember {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .helper-row a {
      text-decoration: none;
      color: var(--dayan-teal);
      font-weight: 500;ب
    }

    .btn-login {
      background: linear-gradient(135deg, var(--accent), var(--dayan-teal));
      border: none;
      border-radius: 16px;
      height: 50px;
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      margin-top: 6px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      transition: transform .08s ease, box-shadow .12s ease, opacity .12s ease;
      box-shadow: 0 12px 24px rgba(27, 167, 166, 0.35);
    }

    .btn-login:active {
      transform: translateY(1px);
      box-shadow: 0 4px 14px rgba(27, 167, 166, 0.35);
    }

    .btn-login.disabled,
    .btn-login:disabled {
      opacity: .7;
      box-shadow: none;
    }

    .btn-login .spinner-border {
      width: 16px;
      height: 16px;
      border-width: 2px;
    }

    /* =========================
       7) STATUS MESSAGE + MASCOT
       ========================== */

    .status-message {
      margin-top: 12px;
      border-radius: 18px;
      font-size: 13px;
      padding: 10px 12px;
      display: none;
      align-items: center;
      gap: 10px;
      background: #E6F7F4;
    }

    .status-visual {
      flex: 0 0 auto;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      min-width: 56px;
    }

    .status-mascot {
      display: none;
      width: 64px;
      height: auto;
      filter: drop-shadow(0 8px 16px rgba(13, 39, 53, 0.25));
    }

    .status-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 999px;
      background: #ffffffdd;
      color: var(--dayan-teal);
      box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
      font-size: 16px;
    }

    .status-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .status-title {
      font-weight: 600;
      color: var(--dayan-blue);
    }

    .status-body {
      color: var(--gray);
      line-height: 1.5;
    }

    .status-message.error {
      background: #FDECEC;
    }

    .status-message.error .status-mascot {
      display: block;
    }

    .status-message.error .status-icon {
      display: none;
    }

    .status-message.info {
      background: #E6F7F4;
    }

    .status-message.info .status-mascot {
      display: none;
    }

    .status-message.info .status-icon {
      display: inline-flex;
    }

    @media (max-width: 360px) {
      .status-mascot {
        width: 56px;
      }
    }