* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}


body {
    background: #f2f3f5;
    
}

.auth-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.auth-stack{
  position:relative;
}

.auth-box {
  width: 360px;
  padding: 48px;
  border-radius: 20px;
  background: #fff;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.04);
}

.auth-header {
    text-align: center;
    margin: 0 0 32px;
}

.buttons-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.buttons-box :last-child {
    margin-top: 10px;
}

.buttons-box .btn {
  text-align: center;
  width: 100%;
}

/* For Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Firefox */
input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield; /* Standard property for other browsers */
}

