body {
    font-family: Inter, system-ui, SF Pro Text, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #fff;
    padding: 24px 32px 24px 32px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    width: 320px;
}

.login-header {
    text-align: left;
}

.login-header h2 {
  color: #1a1e25;
  margin: 0 0 15px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.login-form label {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: #4e5863;
  display: block;
}

.login-form .help-text {
  font-size: 12px;
  line-height: 18px;
  color: #4e5863;
  display: block;
  margin-bottom: 6px;
}

.login-form .errors {
  width: 100%;
  color: #a41515;
  padding: 8px;
  border: 1px solid #a41515;
  box-sizing: border-box;
  margin: 0 0 10px 0;
  font-size: 12px;
}

.login-form input {
  padding: 10px 6px 10px 12px;
  background: #fff;
  border: 1px solid #ccd1db;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #88909e;
  font-family: Inter, system-ui, SF Pro Text, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
  margin: 0;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.login-form button {
  border-radius: 6px;
  height: 44px;
  padding: 0 18px;
  margin-top: 24px;
  background: #305076;
  box-shadow: inset 0 0 0 1px transparent;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  appearance: none;
  box-sizing: border-box;
  cursor: pointer;
  width: 100%;
}

.login-form button:hover {
  background-color: #0056b3;
}

/**---new*/

.login-container .tab {
  overflow: hidden;
  background-color: #f1f1f1;
  border-radius: 10px;
  border: 1px solid #305076;
  margin-bottom: 15px;
}

.login-container .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  text-align: center;
  width: 50%;
}

.login-container .tab button:hover {
  background: #ccc;
}

.login-container .tab button.active {
  background-color: #305076;
}

.login-container .pin-input input {
  font-variant-numeric: tabular-nums;
  letter-spacing: 21px;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0;
  background: none;
  border: none;
  display: inline-block;
  font-size: 30px;
  line-height: 66px;
  min-height: 66px;
  outline: none;
  text-align: center;
  width: 100%;
  transform: translate(10px);
  color: #007bff;
}

.login-container .pin-input ::placeholder {
  color: #305076;
  opacity: 1;
}

.login-container #phone-tab, .login-container #pin-section {
  display: none;
}

.login-container #card-message {
  text-align: center;
  overflow: hidden;
}

.login-container #card-message img {
  margin: 20px 0 0 30px;
  opacity: 0.2;
}

.login-form .cancel {
  border: none;
  background: none;
  color: #a41515;
}

.login-form .cancel:hover {
  background: none;
}
