.login-card {
  position: relative;
  display: grid;
  gap: 15px;
  padding: 22px 24px 20px;
  border: 1px solid rgba(223, 217, 207, 0.96);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 56px rgba(55, 45, 32, 0.09);
  backdrop-filter: blur(18px);
}

.login-tabs {
  display: flex;
  gap: 38px;
  align-items: center;
  padding: 0 4px 5px;
}

.login-tabs button {
  color: #8b908c;
  font-size: 16px;
  font-weight: 900;
}

.login-tabs button.is-active {
  color: #0d8b58;
}

.login-field {
  display: grid;
  gap: 7px;
}

.field-shell {
  display: flex;
  align-items: center;
  min-height: 54px;
  border: 1px solid rgba(17, 21, 19, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  transition: border 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field-shell:focus-within {
  border-color: rgba(15, 139, 83, 0.64);
  box-shadow: 0 0 0 4px rgba(15, 139, 83, 0.1);
}

.field-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  margin-left: 10px;
  padding: 8px;
  border-radius: 11px;
  background: rgba(15, 139, 83, 0.1);
  color: #0d8b58;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.field-icon-dark {
  background: transparent;
  color: #171b19;
}

.login-prefix {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  margin-left: 7px;
  padding-right: 17px;
  border-right: 1px solid rgba(17, 21, 19, 0.1);
  color: #111513;
  font-size: 16px;
  font-weight: 800;
}

.login-field input {
  min-width: 0;
  flex: 1;
  width: 100%;
  height: 52px;
  border: 0;
  padding: 0 15px;
  outline: none;
  background: transparent;
  color: #111513;
  font-size: 15px;
  font-weight: 700;
}

.login-field input::placeholder {
  color: #a9adae;
  font-weight: 700;
}

.login-field em {
  color: #c33d2a;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

#sendCodeButton {
  align-self: stretch;
  min-width: 96px;
  padding: 0 13px;
  border-left: 1px solid rgba(17, 21, 19, 0.08);
  color: #0d8b58;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

#sendCodeButton:disabled {
  color: #8b908c;
  cursor: not-allowed;
}

.agreement-row {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #29302d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.agreement-row input {
  position: relative;
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  appearance: none;
  border: 1.5px solid #939994;
  border-radius: 50%;
  background: transparent;
}

.agreement-row input:checked {
  border-color: #0d8b58;
  background: #0d8b58;
}

.agreement-row input:checked::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 5px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  transform: rotate(-45deg);
}

.agreement-row a {
  color: #0d8b58;
  text-decoration: none;
}
