input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.field {
	  -moz-appearance: textfield;
    border: none;
    border-bottom: 1px solid #808080;
    width: clamp(20px, 20%, 67px);
    height: 54px;
    background-color: transparent;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
}

.field-phone {
   -moz-appearance: textfield;
    border: none;
    border-bottom: 1px solid #808080;
    width: clamp(40px, 20%, 108px);
    height: 54px;
    background-color: transparent;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
}

.field-filled,
.field-phone-filler {
  border-bottom: 1px solid #080808;
}

.field:focus,
.field-phone:focus {
    outline: none;
}

.fieldset {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.field-error-code {
    color: #FF0000;
    box-shadow: none;
    border-bottom: 1px solid #FF0000;
} 

.field-code-success {
    border: 1px solid #2CAAA4;
}

@media (max-width: 500px) {
  .field,
	.field-phone {
		font-size: 25px;
	}
}

@media (max-width: 420px) {
  .code-tel-text,
  .grey-text,
  .form-control,
  .code-email-text,
  .auth-text {
    font-size: 14px;
  }
}