* {
  box-sizing: border-box
}

html,body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: Arial,Helvetica,sans-serif;
  background: #1b1f23;
  color: #f4f5f6
}

body {
  min-height: 100vh
}

.page {
  width: min(660px,100%);
  margin: 0 auto;
  padding: 45px 30px 70px;
  text-align: center
}

.brand-icon {
  width: 130px;
  height: 130px;
  margin: 0 auto 42px;
  border-radius: 32px;
  background: #1677ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 62px;
  color: #fff;
  box-shadow: 0 0 35px rgba(22,119,255,.2)
}

h1 {
  font-size: 56px;
  line-height: 1.1;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -1.5px
}

.subtitle {
  font-size: 25px;
  color: #8e9398;
  margin: 0 0 58px;
  line-height: 1.45
}

.card {
  background: #24292e;
  border-radius: 40px;
  padding: 48px 40px 42px;
  text-align: left;
  box-shadow: 0 18px 45px rgba(0,0,0,.15)
}

label {
  display: block;
  font-size: 25px;
  font-weight: 700;
  color: #bfc3c7;
  margin: 0 0 22px
}

label span {
  font-size: 19px;
  color: #777d82;
  font-weight: 600;
  margin-left: 6px
}

.input-wrap {
  height: 104px;
  border: 2px solid #343a40;
  border-radius: 25px;
  background: #1b1f23;
  display: flex;
  align-items: center;
  margin-bottom: 38px;
  padding: 0 26px;
  transition: .2s
}

.input-wrap:focus-within {
  border-color: #1677ff;
  box-shadow: 0 0 0 4px rgba(22,119,255,.08)
}

.input-wrap>i {
  font-size: 31px;
  color: #777e84;
  width: 46px
}

.input-wrap input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f1f2f3;
  font-size: 29px;
  padding: 0 14px
}

.input-wrap input::placeholder {
  color: #70767b
}

.eye {
  border: 0;
  background: transparent;
  color: #777e84;
  font-size: 25px;
  cursor: pointer;
  padding: 10px
}

.primary {
  width: 100%;
  height: 104px;
  border: 0;
  border-radius: 25px;
  background: #1677ff;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-decoration: none;
  transition: .2s
}

.primary:hover {
  background: #0d6df2
}

.switch {
  text-align: center;
  color: #888e93;
  font-size: 25px;
  margin: 42px 0 0
}

.switch a,.link-button {
  color: #1677ff;
  font-weight: 700;
  text-decoration: none
}

.link-button {
  border: 0;
  background: transparent;
  font-size: inherit;
  padding: 0;
  cursor: pointer
}

.link-button:disabled {
  color: #777d82;
  cursor: not-allowed
}

.alert {
  border-radius: 20px;
  padding: 20px 22px;
  margin-bottom: 28px;
  font-size: 20px;
  line-height: 1.45
}

.alert i {
  margin-right: 10px
}

.alert.success {
  background: #163d2e;
  border: 2px solid #1c684b;
  color: #24cf75
}

.alert.error {
  background: #3d2022;
  border: 2px solid #693437;
  color: #ff7379
}

.verify-card {
  text-align: center
}

.verify-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #1c3457;
  color: #1677ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 65px;
  margin: 0 auto 42px
}

.verify-card h2 {
  font-size: 48px;
  margin: 0 0 20px;
  font-weight: 800
}

.verify-text {
  font-size: 24px;
  color: #8e9398;
  line-height: 1.5;
  margin: 0 0 8px
}

.email {
  display: block;
  font-size: 24px;
  word-break: break-word;
  margin-bottom: 48px
}

.otp-boxes {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 14px;
  margin-bottom: 40px
}

.otp {
  width: 100%;
  height: 108px;
  border: 2px solid #343a40;
  border-radius: 22px;
  background: #1b1f23;
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  outline: 0
}

.otp:focus {
  border-color: #1677ff;
  box-shadow: 0 0 0 4px rgba(22,119,255,.08)
}

.resend-form {
  margin: 0
}

.profile-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #353a3f;
  font-size: 22px
}

.profile-row span {
  color: #8d9398
}

.profile-row strong {
  text-align: right;
  word-break: break-word
}

.logout {
  margin-top: 35px
}

.loading {
  opacity: .7;
  pointer-events: none
}

@media(max-width:500px) {
  .page {
    padding: 14px 15px 27px
  }

  .brand-icon {
    width: 75px;
    height: 75px;
    font-size: 29px;
    margin-bottom: 20px
  }

  h1 {
    font-size: 33px
  }

  .subtitle {
    font-size: 16px;
    margin-bottom: 26px
  }

  .card {
    border-radius: 12px;
    padding: 20px 20px 19px;
  }

  label {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .input-wrap {
    height: 45px;
    margin-bottom: 16px;
    padding: 0 12px
  }

  .input-wrap input {
    font-size: 14px
  }
  
  .input-wrap i {
    font-size: 18px
  }
  
  label span {
    font-size: 14px;
  }

  .primary {
    height: 50px;
    font-size: 16px;
    margin-top: 18px;
  }

  .switch {
    font-size: 16px
  }
  
  .alert {
    font-size: 14px;
    padding: 6px 4px;
    border-radius: 4px;
  }
  
  .verify-icon {
    height: 55px;
    width: 55px;
    font-size: 26px;
  }

  .verify-card h2 {
    font-size: 22px
  }

  .verify-text,.email {
    font-size: 14px
  }

  .otp-boxes {
    gap: 10px
  }

  .otp {
    height: 45px;
    font-size: 34px;
    border-radius: 4px;
  }}

.forgot-link {
  margin-top: -20px;
  margin-bottom: 0
  font-size: 16px;
}
.card>label{margin-top:18px}.card>.input{width:100%;height:58px;margin:0 0 18px;padding:0 16px;border:2px solid #343a40;border-radius:16px;background:#1b1f23;color:#fff;font-size:18px;outline:0}.card>.input:focus{border-color:#f5c542;box-shadow:0 0 0 4px rgba(245,197,66,.08)}
@media(max-width:500px){.card>.input{height:46px;font-size:15px}}
