body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  min-height: 100vh;
}

/* form */

.form {
  margin: 3rem 0;
}

.form__content {
  border: 1px solid #DCDCDC;
  padding: 2rem;
  border-radius: 0.5rem;
  width: 500px;
}



.title__login,
.title__loginName,
.title__register {
  margin: 1rem 0;
  font-weight: 600;
  font-size: 25px;
  color: #282828;
}

.title__description {
  font-size: 17px;
  font-weight: 500;
  color: #1F2525;
}

.input__emailSend {
  margin: 3rem 0;
  width: 100%;
}

.input__emailSend input {
  height: 55px;
  border: 1px solid #DCDCDC;
  border-radius: 0.3rem;
  background: transparent;
  padding: 0 1rem;
  font-weight: 500;
  color: #61605E;
  outline: none;
  font-size: 15px;
}

.input__emailSend input::placeholder {
  color: #61605E;
  opacity: 0.9;
}

.title__descriptionSecondary {
  max-width: 440px;
  font-size: 15px;
}

.title__recoveryAccount,
.a__createAccount {
  margin: 0.5rem 0 0 0;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: #684FB4;
}

.title__descriptionSecondary {
  color: #616161;
  font-weight: 500;
  line-height: 1.3rem;
}

.title__recoveryAccount--sizeFont {
  font-size: 15px;
}

/* buttons__redirectLocal */

.buttons__redirectLocal {
  margin: 3rem 0;
  width: 100%;
}

.a__createAccount {
  margin: 0;
}

.a__prox {
  text-decoration: none;
  background: #5830E0;
  border: 1px solid #553AA3;
  padding: 0.7rem 1.5rem;
  border-radius: 0.3rem;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.a__prox:hover {
  background: #6249b4;
}

/* select */

.select select {
  border: none;
  color: #716D6A;
  font-weight: 500;
  outline: none;
}

/* info__about */

.info__about {
  margin: 1.5rem 0;
}

.ul__listAbout {
  list-style: none;
}

.ul__listAbout li a {
  margin: 0 0 0 1rem;
  color: #716D6A;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.ul__listAbout li a:hover {
  color: #1f1f1e;
}

@media (max-width: 650px) {

  body {
    align-items: start;
  }

  .form {
    margin: 0;
    width: 90%;
  }

  .form__content {
    width: 100%;
    padding: 1rem;
    margin: 2rem 0 0 0;
  }

}

@media (max-width: 410px) {
  .info__about {
    flex-direction: column;
    align-items: start;
  }

  .ul__listAbout {
    margin: 0.5rem 0 0 0;
  }

  .ul__listAbout li a {
    margin: 0 1rem 0 0;
  }
}