// Define variables for colors and common values
$primary-color: #222;
$secondary-color: rgba(188, 153, 111, 0.2);
$font-family: 'Poppins';
$input-padding: 10px;

.changePasswordPage {
  .changePasswordInputField {
    input {
      padding-left: $input-padding;
    }
    > div {
      background: #fff;
      box-shadow: 0 4px 20px 0 $secondary-color !important;
    }
  }
  
  h3 {
    color: $primary-color;
    font-family: $font-family;
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
  }
  
  span {
    color: $primary-color;
    font-family: $font-family;
    font-size: 16px;
    font-weight: 400;
  }
}
