/* ===========================================================
   PROJECT SEVEN
   Premium Login
   =========================================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  /* Brand */

  --primary: #0f4c81;
  --primary-dark: #0a3860;
  --secondary: #1c6cb5;

  --gold: #d4af37;
  --gold-dark: #b9911f;

  --white: #ffffff;

  --text: #1e293b;
  --text-light: #64748b;

  --border: #e5e7eb;

  --card: rgba(255, 255, 255, 0.9);

  --shadow: 0 25px 60px rgba(15, 76, 129, 0.12);
}

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

html,
body {
  height: 100%;

  font-family: "Poppins", sans-serif;

  overflow: hidden;

  background: linear-gradient(135deg, #f4fff9, #eef5ff);
}

/* ===========================================================
   Animated Background
   =========================================================== */

.bg-animation {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

.circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.45;

  animation: float 18s infinite ease-in-out;
}

.c1 {
  width: 420px;
  height: 420px;

  background: #0f4c81;

  left: -120px;
  top: -80px;
}

.c2 {
  width: 300px;
  height: 300px;

  background: #d4af37;

  right: -70px;
  top: 80px;
}

.c3 {
  width: 280px;
  height: 280px;

  background: #3b82f6;

  left: 35%;
  bottom: -100px;
}

.c4 {
  width: 220px;
  height: 220px;

  background: #93c5fd;

  right: 25%;
  bottom: 60px;
}

@keyframes float {
  50% {
    transform: translateY(-30px) scale(1.08);
  }
}

/* ===========================================================
   Layout
   =========================================================== */

.login-wrapper {
  display: flex;

  height: 100vh;
}

/* ===========================================================
   LEFT
   =========================================================== */

.left-panel {
  width: 55%;

  padding: 70px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-logo {
  width: 95px;

  margin-bottom: 25px;
}

.brand-title h1 {
  font-size: 62px;

  font-weight: 800;

  color: var(--primary);

  line-height: 1;
}

.brand-title h1 span {
  color: var(--gold);
}

.brand-title h3 {
  margin-top: 20px;

  font-size: 28px;

  color: var(--text);
}

.brand-title p {
  margin-top: 18px;

  max-width: 600px;

  color: var(--text-light);

  line-height: 1.8;
}

/* ===========================================================
   Features
   =========================================================== */

.feature-list {
  margin-top: 70px;

  display: flex;

  flex-direction: column;

  gap: 22px;
}

.feature {
  display: flex;

  align-items: center;

  gap: 20px;
}

.feature-icon {
  width: 64px;
  height: 64px;

  border-radius: 18px;

  background: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;

  color: var(--primary);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature h4 {
  font-size: 18px;

  color: var(--text);
}

.feature span {
  font-size: 14px;

  color: var(--text-light);
}

/* ===========================================================
   RIGHT
   =========================================================== */

.right-panel {
  width: 45%;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 40px;
}

.login-card {
  position: relative;
  width: 100%;
  max-width: 500px;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  border: 1px solid rgba(255, 255, 255, 0.7);

  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.12),
    0 10px 25px rgba(11, 110, 79, 0.08);

  overflow: hidden;

  animation: cardFloat 0.8s ease;
}

.login-card::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 5px;

  background: linear-gradient(
    90deg,
    var(--primary),
    var(--gold),
    var(--secondary)
  );
}

.login-card::after {
  content: "";

  position: absolute;

  top: -140px;
  right: -140px;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background: rgba(11, 110, 79, 0.05);

  filter: blur(10px);

  pointer-events: none;
}

@keyframes cardFloat {
  from {
    opacity: 0;

    transform: translateY(25px) scale(0.98);
  }

  to {
    opacity: 1;

    transform: translateY(0) scale(1);
  }
}

/* ===========================================================
   Header
   =========================================================== */

.secure-badge {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 8px 18px;

  margin-bottom: 18px;

  border-radius: 999px;

  background: #ecfdf5;

  color: var(--primary);

  border: 1px solid rgba(11, 110, 79, 0.12);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.5px;

  text-transform: uppercase;
}

.login-header {
  margin-top: 25px;

  text-align: center;
}

.login-icon {
  width: 72px;

  margin-bottom: 15px;
}

.login-header h2 {
  font-size: 34px;

  color: var(--text);
}

.login-header p {
  margin-top: 8px;

  color: var(--text-light);
}

/* ===========================================================
   Inputs
   =========================================================== */

.input-group {
  margin-top: 28px;
}

.input-group label {
  display: block;

  margin-bottom: 10px;

  font-weight: 600;

  color: var(--text);
}

.input-box {
  display: flex;

  align-items: center;

  border: 1px solid var(--border);

  border-radius: 16px;

  padding: 0 18px;

  background: white;

  transition: 0.3s;
}

.input-box:focus-within {
  border-color: #0f4c81;

  box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.1);
}

.input-box i {
  color: var(--primary);
}

.input-box input {
  flex: 1;

  height: 58px;

  border: none;

  outline: none;

  padding: 0 14px;

  font-size: 15px;

  background: none;
}

.toggle-password {
  border: none;

  background: none;

  cursor: pointer;

  color: #64748b;
}

/* ===========================================================
   Login Options
   =========================================================== */

.login-options {
  margin-top: 18px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  font-size: 14px;
}

.remember {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #475569;
}

.forgot-link {
  background: none;

  border: none;

  color: var(--primary);

  cursor: pointer;

  font-weight: 600;
}

/* ===========================================================
   Button
   =========================================================== */

.btn-login {
  width: 100%;

  height: 60px;

  margin-top: 30px;

  border: none;

  border-radius: 18px;

  background: linear-gradient(135deg, var(--primary), var(--secondary));

  color: white;

  font-size: 16px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;
}

.btn-login:hover {
  transform: translateY(-3px);

  box-shadow: 0 20px 40px rgba(11, 110, 79, 0.3);
}

/* ===========================================================
   Divider
   =========================================================== */

.login-divider {
  margin: 35px 0;

  text-align: center;

  color: #94a3b8;

  font-size: 13px;
}

/* ===========================================================
   Security
   =========================================================== */

.security-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 10px;
}

.security-grid div {
  text-align: center;

  padding: 18px;

  border-radius: 15px;

  background: white;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);

  font-size: 13px;
}

.security-grid i {
  display: block;

  margin-bottom: 10px;

  color: var(--primary);

  font-size: 22px;
}

/* ===========================================================
   Footer
   =========================================================== */

.login-footer {
  margin-top: 35px;

  text-align: center;

  color: #64748b;

  font-size: 13px;
}

.login-footer strong {
  color: var(--primary);
}

.version-pill {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-top: 18px;

  padding: 8px 18px;

  border-radius: 999px;

  background: #f8fafc;

  cursor: pointer;

  transition: 0.3s;
}

.version-pill:hover {
  background: var(--primary);

  color: white;
}

/* ===========================================================
   Responsive
   =========================================================== */

@media (max-width: 991px) {
  .left-panel {
    display: none;
  }

  .right-panel {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .login-card {
    padding: 30px;

    border-radius: 24px;
  }

  .security-grid {
    grid-template-columns: 1fr;
  }
}

.login-header {
  text-align: center;

  margin-bottom: 35px;
}

.login-header h2 {
  font-size: 36px;

  font-weight: 700;

  color: var(--text);

  margin-bottom: 10px;
}

.login-header p {
  color: var(--text-light);

  font-size: 15px;

  line-height: 1.7;

  max-width: 320px;

  margin: auto;
}

.input-group {
  margin-bottom: 22px;
}

.input-group label {
  display: block;

  margin-bottom: 10px;

  font-size: 13px;

  font-weight: 700;

  color: #475569;

  letter-spacing: 0.3px;
}

.input-box {
  display: flex;

  align-items: center;

  height: 62px;

  padding: 0 18px;

  background: #f8fafc;

  border: 1px solid #e2e8f0;

  border-radius: 16px;

  transition: all 0.25s ease;
}

.input-box:hover {
  border-color: #cbd5e1;
}

.input-box:focus-within {
  background: #fff;

  border-color: var(--primary);

  box-shadow:
    0 0 0 4px rgba(11, 110, 79, 0.08),
    0 8px 20px rgba(11, 110, 79, 0.1);
}

.input-box i {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: #ecfdf5;

  color: var(--primary);

  font-size: 16px;

  margin-right: 12px;
}

.input-box input {
  flex: 1;

  height: 100%;

  border: none;

  outline: none;

  background: transparent;

  font-size: 15px;

  color: var(--text);
}

.input-box input::placeholder {
  color: #94a3b8;
}

.toggle-password {
  width: 42px;
  height: 42px;

  border: none;

  border-radius: 12px;

  background: transparent;

  color: #64748b;

  cursor: pointer;

  transition: 0.25s;
}

.toggle-password:hover {
  background: #ecfdf5;

  color: var(--primary);
}

.btn-login {
  width: 100%;

  height: 62px;

  margin-top: 28px;

  border: none;

  border-radius: 18px;

  background: linear-gradient(135deg, var(--primary), var(--secondary));

  color: #fff;

  font-size: 16px;

  font-weight: 700;

  letter-spacing: 0.3px;

  cursor: pointer;

  transition: all 0.25s ease;

  box-shadow: 0 15px 35px rgba(11, 110, 79, 0.25);
}

.btn-login:hover {
  transform: translateY(-3px);

  box-shadow: 0 22px 45px rgba(11, 110, 79, 0.35);
}

.btn-login:active {
  transform: scale(0.98);
}

.login-divider {
  position: relative;

  margin: 34px 0;

  text-align: center;

  color: #94a3b8;

  font-size: 12px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.login-divider::before,
.login-divider::after {
  content: "";

  position: absolute;

  top: 50%;

  width: 32%;

  height: 1px;

  background: #e2e8f0;
}

.login-divider::before {
  left: 0;
}

.login-divider::after {
  right: 0;
}

.security-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 12px;
}

.security-grid div {
  background: #f8fafc;

  border: 1px solid #eef2f7;

  border-radius: 16px;

  padding: 18px 12px;

  text-align: center;

  transition: 0.25s;
}

.security-grid div:hover {
  background: #fff;

  transform: translateY(-4px);

  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.security-grid i {
  display: block;

  margin-bottom: 10px;

  font-size: 22px;

  color: var(--primary);
}

.input-box {
  display: flex;
  align-items: center;

  width: 100%;

  height: 64px;

  background: #f8fafc;

  border: 1px solid #dce4ec;

  border-radius: 16px;

  padding: 0 16px;

  transition: all 0.25s ease;
}

.input-box:hover {
  border-color: #bcccdc;
}

.input-box:focus-within {
  background: #fff;

  border-color: var(--primary);

  box-shadow: 0 0 0 4px rgba(11, 110, 79, 0.08);
}

.input-box > i {
  width: 24px;

  min-width: 24px;

  text-align: center;

  color: var(--primary);

  font-size: 17px;

  margin-right: 14px;
}

.input-box input {
  flex: 1;

  width: 100%;

  height: 100%;

  border: none;

  outline: none;

  background: transparent;

  padding: 0;

  font-size: 15px;

  font-weight: 500;

  color: #1e293b;
}

.input-box input::placeholder {
  color: #94a3b8;

  font-weight: 400;
}

.toggle-password {
  width: 38px;
  height: 38px;

  border: none;

  border-radius: 10px;

  background: transparent;

  color: #94a3b8;

  cursor: pointer;

  transition: 0.25s;

  margin-left: 8px;
}

.toggle-password:hover {
  background: #ecfdf5;

  color: var(--primary);
}

.input-group {
  margin-bottom: 24px;
}

.input-group label {
  margin-bottom: 8px;

  font-size: 13px;

  font-weight: 600;
}

.btn-login {
  margin-top: 18px;

  height: 64px;

  border-radius: 16px;
}

.login-card {
  position: relative;

  width: 100%;
  max-width: 420px;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(24px);

  border: 1px solid rgba(255, 255, 255, 0.7);

  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.12),
    0 10px 25px rgba(11, 110, 79, 0.08);
}

.left-panel {
  flex: 1.15;
}

.right-panel {
  flex: 0.85;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 50px;
}

#loginForm {
  width: 100%;
}

.input-group {
  width: 100%;
}

.input-box {
  width: 100%;
}

.input-group {
  width: 100%;

  margin-bottom: 22px;
}

.input-group label {
  display: block;

  width: 100%;

  margin-bottom: 8px;
}

.toggle-password {
  width: 42px;
  min-width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 12px;

  background: transparent;

  color: #94a3b8;

  cursor: pointer;

  transition: all 0.25s ease;

  padding: 0;
  margin-left: 8px;
}

.toggle-password i {
  font-size: 16px;
  line-height: 1;
}

.toggle-password:hover {
  background: #ecfdf5;
  color: var(--primary);
}

.input-box {
  position: relative;

  display: flex;
  align-items: center;

  width: 100%;
  height: 64px;

  padding-left: 16px;
  padding-right: 52px; /* reserve space for eye */

  background: #f8fafc;

  border: 1px solid #dce4ec;

  border-radius: 16px;

  transition: 0.25s;
}

.input-box > i {
  width: 22px;
  min-width: 22px;

  text-align: center;

  color: var(--primary);

  font-size: 17px;

  margin-right: 14px;
}

.input-box input {
  flex: 1;

  width: 100%;
  height: 100%;

  border: none;
  outline: none;

  background: transparent;

  padding: 0;

  font-size: 15px;
}

.toggle-password {
  position: absolute;

  top: 50%;
  right: 10px;

  transform: translateY(-50%);

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  outline: none;

  border-radius: 10px;

  background: transparent;

  color: #94a3b8;

  cursor: pointer;

  padding: 0;

  transition: 0.25s;
}

.toggle-password i {
  margin: 0 !important;
  padding: 0 !important;

  width: auto !important;
  height: auto !important;

  background: none !important;

  border-radius: 0 !important;

  font-size: 17px;

  line-height: 1;
}

.btn-login {
  background: linear-gradient(135deg, #0f4c81 0%, #1b66a8 55%, #2a7ed2 100%);

  color: #fff;

  box-shadow: 0 16px 35px rgba(15, 76, 129, 0.3);
}

.btn-login:hover {
  transform: translateY(-3px);

  box-shadow: 0 24px 45px rgba(15, 76, 129, 0.4);
}

.login-card::before {
  background: linear-gradient(90deg, #0f4c81, #d4af37, #0f4c81);
}

.input-box > i {
  color: #0f4c81;
}

.toggle-password:hover {
  background: rgba(15, 76, 129, 0.08);

  color: #0f4c81;
}

.version-pill:hover {
  background: #0f4c81;

  color: #fff;
}

.brand-title h1 {
  color: #0f4c81;
}

.brand-title h1 span {
  color: #d4af37;
}
.feature-icon {
  color: #0f4c81;
}

.feature-icon:hover {
  background: #0f4c81;

  color: #fff;
}

.brand-logo {
  width: 125px; /* increased from 95px */
  max-width: 100%;
  height: auto;

  margin-bottom: 10px;

  filter: drop-shadow(0 10px 20px rgba(0, 57, 166, 0.12));
  transition: transform 0.25s ease;
}

.brand-logo:hover {
  transform: scale(1.03);
}

.bank-auth {
  text-align: center;
  padding: 12px;
}

.bank-logo {
  margin-bottom: 18px;
  animation: pulseLogo 2s infinite;
}

.bank-spinner {
  width: 54px;
  height: 54px;
  margin: 18px auto;

  border-radius: 50%;

  border: 4px solid #e7eef9;
  border-top: 4px solid #1e3a8a;

  animation: spin 0.8s linear infinite;
}

.bank-auth h3 {
  font-size: 22px;
  font-weight: 700;

  color: #173b8f;

  margin-bottom: 10px;
}

.bank-auth p {
  color: #64748b;
  font-size: 14px;

  line-height: 1.7;

  margin-bottom: 28px;
}

.bank-steps {
  display: flex;
  flex-direction: column;

  gap: 12px;

  text-align: left;
}

.bank-steps .step {
  display: flex;
  align-items: center;

  gap: 14px;

  padding: 14px 16px;

  border-radius: 14px;

  background: #f8fafc;

  color: #64748b;

  font-size: 14px;

  transition: 0.3s;
}

.bank-steps .step.active {
  background: #eef5ff;

  color: #173b8f;

  border-left: 4px solid #d4af37;

  font-weight: 600;
}

.bank-steps i {
  width: 34px;
  height: 34px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: white;

  color: #1e3a8a;
}

.bank-footer {
  margin-top: 28px;

  color: #94a3b8;

  font-size: 12px;

  letter-spacing: 0.3px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseLogo {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.bank-login-error-popup {
  border-radius: 18px !important;
  padding: 25px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
}

.bank-login-error-title {
  color: #991b1b !important;
  font-weight: 700 !important;
  font-size: 22px !important;
}

.bank-login-error-btn {
  border-radius: 10px !important;
  padding: 10px 25px !important;
  font-weight: 600 !important;
}

/* ===========================================================
   RESPONSIVE LOGIN BOX
   Keeps the login card proportional on every screen
   =========================================================== */

.login-card {
  width: min(100%, 520px);

  /*
     * Prevent the card from becoming too tall on
     * smaller laptop / desktop screens.
     */
  max-height: calc(100vh - 50px);

  padding: clamp(28px, 3vw, 42px);

  border-radius: clamp(20px, 2vw, 28px);

  overflow-y: auto;
  overflow-x: hidden;

  box-sizing: border-box;
}

/* ===========================================================
   MEDIUM DESKTOP / LAPTOP
   =========================================================== */

@media (max-width: 1400px) {
  .login-card {
    width: min(100%, 480px);

    padding: 34px 36px;

    max-height: calc(100vh - 40px);
  }

  .login-header h2 {
    font-size: 30px;
  }

  .login-header {
    margin-bottom: 28px;
  }

  .input-group {
    margin-bottom: 18px;
  }

  .input-box {
    height: 56px;
  }

  .btn-login {
    height: 56px;

    margin-top: 20px;
  }

  .login-footer {
    margin-top: 25px;
  }
}

/* ===========================================================
   SMALL LAPTOP / 1366 x 768 TYPE SCREENS
   =========================================================== */

@media (max-width: 1200px) {
  .login-card {
    width: min(100%, 450px);

    padding: 30px 32px;

    max-height: calc(100vh - 30px);
  }

  .login-header {
    margin-top: 15px;
    margin-bottom: 24px;
  }

  .login-header h2 {
    font-size: 28px;
  }

  .login-header p {
    font-size: 13px;
  }

  .input-group {
    margin-bottom: 16px;
  }

  .input-group label {
    font-size: 12px;

    margin-bottom: 6px;
  }

  .input-box {
    height: 54px;

    border-radius: 14px;
  }

  .input-box input {
    font-size: 14px;
  }

  .btn-login {
    height: 54px;

    border-radius: 14px;

    font-size: 15px;

    margin-top: 18px;
  }

  .login-options {
    font-size: 12px;

    margin-top: 14px;
  }

  .login-footer {
    margin-top: 20px;

    font-size: 11px;
  }

  .version-pill {
    margin-top: 12px;

    padding: 6px 14px;
  }
}

/* ===========================================================
   SHORT SCREEN
   Important for 1366x768, 1280x720, etc.
   =========================================================== */

@media (max-height: 800px) {
  .login-card {
    padding-top: 26px;
    padding-bottom: 26px;

    max-height: calc(100vh - 24px);
  }

  .login-header {
    margin-top: 10px;

    margin-bottom: 20px;
  }

  .login-header h2 {
    font-size: 27px;

    margin-bottom: 6px;
  }

  .login-header p {
    font-size: 12px;

    line-height: 1.5;
  }

  .input-group {
    margin-bottom: 14px;
  }

  .input-box {
    height: 50px;
  }

  .btn-login {
    height: 52px;

    margin-top: 14px;
  }

  .login-footer {
    margin-top: 16px;
  }

  .version-pill {
    margin-top: 8px;
  }
}

/* ===========================================================
   VERY SHORT SCREEN
   =========================================================== */

@media (max-height: 700px) {
  .login-card {
    padding: 22px 28px;

    max-height: calc(100vh - 16px);
  }

  .login-header {
    margin-top: 5px;

    margin-bottom: 16px;
  }

  .login-header h2 {
    font-size: 24px;
  }

  .login-header p {
    font-size: 11px;
  }

  .input-group {
    margin-bottom: 11px;
  }

  .input-group label {
    margin-bottom: 5px;

    font-size: 11px;
  }

  .input-box {
    height: 46px;

    border-radius: 12px;

    padding-left: 12px;
  }

  .input-box > i {
    font-size: 14px;

    margin-right: 10px;
  }

  .input-box input {
    font-size: 13px;
  }

  .toggle-password {
    width: 32px;
    height: 32px;

    right: 7px;
  }

  .login-options {
    margin-top: 10px;

    font-size: 11px;
  }

  .btn-login {
    height: 48px;

    margin-top: 12px;

    border-radius: 12px;

    font-size: 14px;
  }

  .login-footer {
    margin-top: 12px;

    font-size: 10px;
  }

  .version-pill {
    margin-top: 6px;

    padding: 5px 12px;
  }
}

/* ===========================================================
   TABLET / MOBILE
   =========================================================== */

@media (max-width: 991px) {
  .right-panel {
    width: 100%;

    padding: 25px;
  }

  .login-card {
    width: min(100%, 480px);

    max-height: calc(100vh - 30px);

    padding: 30px;
  }
}

/* ===========================================================
   SMALL MOBILE
   =========================================================== */

@media (max-width: 576px) {
  .right-panel {
    padding: 15px;
  }

  .login-card {
    width: 100%;

    max-width: 100%;

    padding: 24px 20px;

    border-radius: 20px;

    max-height: calc(100vh - 20px);
  }

  .login-header h2 {
    font-size: 25px;
  }

  .login-header p {
    font-size: 12px;
  }

  .input-box {
    height: 52px;
  }

  .btn-login {
    height: 52px;
  }
}

/* ===========================================================
   EXTRA SMALL MOBILE
   =========================================================== */

@media (max-width: 400px) {
  .right-panel {
    padding: 10px;
  }

  .login-card {
    padding: 20px 16px;

    border-radius: 18px;
  }

  .login-header h2 {
    font-size: 23px;
  }

  .login-options {
    flex-direction: column;

    align-items: flex-start;

    gap: 8px;
  }
}

.brand-logo {
  width: 150px;
  height: auto;
}

.version-pill {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  margin-top: 18px;

  padding: 8px 18px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.75);

  color: #0f4c81;

  border: 1px solid #0f4c81;

  cursor: pointer;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 0.2px;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.version-pill i {
  color: #0f4c81;

  font-size: 12px;

  transition: color 0.25s ease;
}

.version-pill span {
  color: #0f4c81;

  transition: color 0.25s ease;
}

/* =========================================================
   HOVER
========================================================= */

.version-pill:hover {
  background: #0f4c81;

  border-color: #0f4c81;

  color: #ffffff;

  box-shadow: 0 8px 20px rgba(15, 76, 129, 0.22);

  transform: translateY(-1px);
}

.version-pill:hover i,
.version-pill:hover span {
  color: #ffffff;
}

/* =========================================================
   ACTIVE
========================================================= */

.version-pill:active {
  transform: translateY(0);

  box-shadow: 0 4px 10px rgba(15, 76, 129, 0.18);
}
