form#wpaloginform {
  width: 340px;
  margin: 50px auto;
  padding: 30px 0;
  border-top: 3px dotted #00aaa5;
  border-bottom: 3px dotted #00aaa5;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  form#wpaloginform {
    width: calc(100% - 20px);
  }
}
form#wpaloginform input {
  border-radius: 0;
  width: 100%;
  display: block;
}
form#wpaloginform input.input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #d0c9d6;
}
form#wpaloginform input.input::placeholder {
  color: #bcbcbc !important;
}
form#wpaloginform input#wpa-submit {
  color: #ffffff;
  border-radius: 30px !important;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  width: auto;
  height: auto;
  text-transform: none;
  max-width: initial;
  display: block;
  cursor: pointer;
  font-size: 1.1em;
  border-color: #00aaa5;
  background-color: #00aaa5;
  padding: 12px 21px;
  border: 1px solid transparent;
  letter-spacing: 0.75pt;
  transition: all 500ms ease-in-out;
}
form#wpaloginform input#wpa-submit:hover {
  background-color: #01bcbc;
}

.wpa-box {
  margin-bottom: 50px;
  padding: 15px;
  border-radius: 4px;
  max-width: 540px;
  margin-top: 20px;
  width: calc(100% - 20px);
}

.wpa-success,
.wpa-alert {
  background-color: #09aba9;
  border-color: #09aba9;
  color: #ffffff;
}
.wpa-success a,
.wpa-alert a {
  color: #ffffff;
}