* {
  box-sizing: border-box;
}

body {
  background-color: #fff;
  padding: 0;
  margin: 0;
  font-family: 'Roboto';
  font-weight: 400;
  color: #4D4F53;
}

.container {
  max-width: 1150px;
  padding-left: 32px;
  padding-right: 32px;
  margin-left: auto;
  margin-right: auto;
}

.container-centered-content {
  text-align: center;
}

.header {
  padding-top: 64px;
  padding-bottom: 64px;
}

.logo-wrap {
  max-width: 150px;
  margin-left: auto;
  margin-right: auto;
}

.logo-img {
  width: 100%;
  height: auto;
}

/* === Typography start === */
.textBody {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.76;
}

.inline-link {
  color: #3473d9;
  transition: opacity .15s cubic-bezier(1, 0, .37, .91);
}

.inline-link:hover {
   opacity: 0.9;
  transition: opacity .15s cubic-bezier(1, 0, .37, .91);
}

/* === Typography end === */

/* === CTAs start === */

.button-primary {
  width: 100%;
  padding: 15px 25px;
  font-size: 22px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #fff;
  background-color: #3A2C59;
  border-radius: 15px;
  cursor: pointer;
  opacity: 1;
  transition: opacity .35s cubic-bezier(1, 0, .37, .91);
}

.button-primary:hover {
  opacity: .9;
  transition: opacity .35s cubic-bezier(1, 0, .37, .91)
}

@media only screen and (min-width:768px) {
  .button-primary {
    width: auto;
  }
}

/* === CTAs end === */


/* === Form start === */

.label {
  display: block;
  margin-bottom: 1em;
  margin-left: 8px;
  text-align: left;
  font-weight: 900;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.2;
  letter-spacing: normal;
  color: #4d4f53;
  /* font-family: 'Roboto', sans-serif; */
  font-weight: 900;
  font-size: 20px;
}

.input {
  border: 1px solid #E9E6E6;
  border-radius: 15px;
  box-shadow: 0 7px 7px 0 rgba(0, 0, 0, .25);
  -webkit-box-shadow: 0 7px 7px 0 rgba(0, 0, 0, .25);
  outline: none;
  padding: 22px 20px;
  font-size: 20px;
  -webkit-appearance: none;
  width: 100%;
}

.input::-webkit-input-placeholder {
  color: rgba(77, 79, 83, .6);
  font-size: 18px;
  /* font-family: 'Roboto', sans-serif; */
  /* font-weight: 400; */
}

.input-error {
  border: 2px solid #B9234D;
}

.form-field {
  margin-bottom: 32px;
}

.form-field-message {
  margin-top: 16px;
  margin-left: 8px;
  font-size: 14px;
  display: flex;
  justify-content: left;
  align-items: center;
}

.form-field-message-error {
  color: #B9234D;
}

.form-field-message-error-icon {
  margin-right: 8px;
}

@media only screen and (min-width:768px) {
  .password-change-form {
    padding-top: 50px;
  }

  .form-field-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .form-field {
    flex-basis: 48%;
  }

  .form-submit {
    display: block;
    width: 521px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* === Form end === */
