
/* Див для авторизации и регистрации */
.div_auth {
  outline: 1px solid #b8aa7e;
  display: flex;
  width: 400px;
  height: 220px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15%;
  padding: 10px;
  font-family: Montserrat, sans-serif;
}

.div_auth form {
    display: flex;
    flex-direction: column;
    width: 400px;
}

.div_auth input {
    margin: 10px 0;
    padding: 10px;
    border: unset;
    border-bottom: 2px solid #e3e3e3;
    outline: none;
}

.div_auth button {
    padding: 10px;
    background: #e3e3e3;
    border: unset;
    cursor: pointer;
}

.msg {
    border: 1px solid #eee48b;
    border-radius: 3px;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.div_auth a {
    color: #aebee9;
    font-weight: bold;
    text-decoration: none;
}

.div_auth p {
    margin: 10px 0;
}

