:root {
  --banca-ink: #061a78;
  --banca-line: #26346f;
  --banca-field: #eaf1ff;
}

html,
body {
  height: 100%;
}

.banca-title {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--banca-ink);
  font-size: 42px;
  line-height: 1.05;
}

.banca-title--sm {
  font-size: 33px;
  line-height: 1.08;
}

.banca-field {
  height: 54px;
  border: 2px solid var(--banca-line);
  border-radius: 12px;
  padding: 0 18px;
  font-size: 14px;
  color: #0b1f55;
  background: #fff;
  outline: none;
}

.banca-field--select {
  padding-right: 52px;
  appearance: none;
}

.banca-field--filled {
  background: #fff;
}

.banca-field:focus {
  box-shadow: 0 0 0 3px rgba(6, 26, 120, 0.12);
}

.banca-field::placeholder {
  color: rgba(11, 31, 85, 0.6);
}

.banca-field--error {
  border-color: #d93025;
}

.banca-field--error:focus {
  box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.15);
}

.banca-error-label {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #d93025;
}

.banca-eye-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  height: 34px;
  width: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: transparent;
}

.banca-eye-btn:hover {
  background: rgba(6, 26, 120, 0.06);
}

.banca-field-wrap {
  display: flex;
  align-items: stretch;
  border: 2px solid var(--banca-line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--banca-field);
  height: 54px;
}

.banca-field-wrap .banca-field {
  border: 0;
  background: transparent;
  height: 100%;
  padding-left: 18px;
  padding-right: 12px;
}

.banca-icon-btn {
  width: 56px;
  border-left: 2px solid var(--banca-line);
  display: grid;
  place-items: center;
  background: #fff;
}

.banca-icon-btn svg {
  width: 20px;
  height: 20px;
}

.banca-icon-btn[data-toggle-password] svg {
  width: 18px;
  height: 18px;
}

.banca-icon-btn:hover {
  background: #f4f7ff;
}

.banca-primary-btn {
  height: 46px;
  min-width: 112px;
  border-radius: 10px;
  background: var(--banca-ink);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.banca-outline-btn {
  height: 46px;
  min-width: 144px;
  border-radius: 10px;
  border: 2px solid var(--banca-ink);
  color: var(--banca-ink);
  font-weight: 700;
  font-size: 14px;
  background: transparent;
}

.banca-nav-btn {
  height: 40px;
  width: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.banca-nav-btn:hover {
  background: rgba(6, 26, 120, 0.06);
}

.banca-social {
  height: 34px;
  width: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 2px solid rgba(147, 223, 255, 0.55);
  color: rgba(147, 223, 255, 0.95);
}

.banca-social:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.banca-loader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(244, 246, 248, 0.92);
  backdrop-filter: blur(6px);
}

.banca-loader.is-open {
  display: flex;
}

.banca-loader__panel {
  width: min(420px, calc(100vw - 48px));
  border-radius: 18px;
  border: 1px solid #e9eef5;
  background: #fff;
  box-shadow: 0 14px 40px rgba(10, 35, 90, 0.12);
  padding: 26px 24px;
  text-align: center;
}

.banca-loader__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.banca-loader__logo {
  height: 30px;
  width: auto;
}

.banca-loader__spinner {
  height: 34px;
  width: 34px;
  border-radius: 999px;
  border: 3px solid rgba(6, 26, 120, 0.15);
  border-top-color: #061a78;
  animation: banca-spin 0.9s linear infinite;
}

.banca-loader__text {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #061a78;
}

.banca-loader__subtext {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(11, 31, 85, 0.75);
}

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