@use "/src/assets/scss/partial" as *;
@use "/src/assets/scss/variables" as *;

.TitleWrapper {
  margin-bottom: 32px;
  h2 {
    margin: 0 0 12px;
  }
  p {
    color: $grey667Color;
    margin: 0;
  }
}
.PassResetForm {
  .PassresetWrapper {
    position: relative;
    gap: 15px;
    @media (min-width: $md) {
      gap: 25px;
    }
    .InputWrapper{
        width: 100%;
    }
    input {
        background-color: $bgColor;
      height: 60px;
      width: 100%;
      border-radius: 16px;
      text-align: center;
      font-size: $fs20;
      font-weight: $fw500;
      color: $blackColor;
      @media (min-width: $xsm) {
        font-size: $fs30;
        height: 80px;
      }
      @media (min-width: $md) {
        width: 80px;
        height: 80px;
      }
      @media (min-width: $lg) {
        font-size: $fs48;
        width: 100px;
        height: 100px;
      }
      @media (min-width: $xxl) {
        width: 120px;
        height: 120px;
      }
    }
  }
}
