﻿/* PRIMÁRIAS */
/* SECUNDÁRIAS */
/* NEUTRAS */
/* SEMÂNTICA */
.pp-background-image {
  margin-top: 4rem;
  width: 100%;
  height: 450px;
  background: url('../../img/headers/header_quemusa.jpg') no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 40px;
}
.pp-password-title {
  width: 85%;
  max-width: 1300px;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.pp-password-title h1 {
  color: #1678DC;
  font-size: 64px;
  font-weight: 300;
  line-height: 1em;
  text-align: center;
}
.pp-password-title p {
  font-size: 16px;
  font-weight: 500;
  color: #777777;
  text-align: center;
  margin-top: 27px;
  margin-bottom: 27px;
}
.pp-password-form-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.recaptcha-and-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 1.5rem;
}
.pp-form-links {
  margin-top: 1.5rem;
  color: #3D4147;
  font-weight: 500;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pp-form-links a {
  color: #1678DC;
}
.pp-password-form {
  width: 85%;
  max-width: 1300px;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.pp-password-form .pp-form {
  display: flex;
  flex-direction: column;
  width: 50%;
  font-family: 'Roboto', sans-serif;
  padding: 2rem;
  border-radius: 10px;
  background-color: #F2F2F2;
}
.pp-password-form .pp-form label {
  color: #3D4147;
  font-weight: 500;
  font-size: 14px;
  margin-left: 3px;
  margin-bottom: 6px;
}
.pp-password-form .pp-form input[type=text],
.pp-password-form .pp-form select,
.pp-password-form .pp-form textarea,
.pp-password-form .pp-form input[type=password] {
  border: 1px solid #D3D3D3;
  border-radius: 3px;
  padding: 10px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #3D4147;
  background: #FFFFFF;
}
.pp-password-form .pp-form input[type=text]::placeholder,
.pp-password-form .pp-form select::placeholder,
.pp-password-form .pp-form textarea::placeholder,
.pp-password-form .pp-form input[type=password]::placeholder {
  font-weight: 500;
  font-size: 14px;
  color: #777777;
}
.pp-password-form .pp-form .pp-form-input {
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (max-width: 1366px) {
  .pp-password-form .pp-form {
    width: 85%;
  }
}
@media screen and (max-width: 1050px) {
  .pp-background-image {
    height: 300px;
  }
  .pp-password-title h1 {
    text-align: left;
    font-size: 34px;
  }
  .pp-password-title h1 span {
    display: inline-block;
  }
  .pp-password-title p {
    text-align: left;
    font-size: 16px;
  }
  .pp-password-form .pp-form {
    width: 100%;
  }
  .pp-password-form {
    justify-content: unset;
  }
}
@media screen and (max-width: 700px) {
  .pp-background-image {
    height: 200px;
  }
  .pp-password-form {
    width: 95%;
  }
  .pp-password-form .pp-form {
    width: 100%;
  }
  .pp-password-title p {
    font-size: 14px;
  }
  .recaptcha-and-button {
    flex-direction: column;
    align-items: flex-start;
  }
  .recaptcha-and-button input[type=submit] {
    margin-top: 1.5rem;
  }
}