* {
  font-family: "Signika", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  background: #0B0E11 !important;
}

main {
  margin: 10vh 0 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 350px;
  padding: 30px 25px;
  border: none;
  border-radius: 5px;
  background: hsl(0, 0%, 100%);
  margin: 20px 0;
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

h1 {
  color: #051D40;
  font-size: 25px;
  font-weight: 400;
  margin: 15px 0 30px 0;
}

form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
  margin-bottom: 20px;
}

label {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

label p {
  font-size: 15px;
  font-weight: 600;
  color: #051D40;
  margin: 0 0 7px 0;
}

label div {
  width: 96%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid #dee2e6;
  padding: 10px 2%;
  border-radius: 10px;
}

label div input {
  width: 99%;
  padding: 0 0 0 1%;
  outline: none;
  border: none;
}

.fg-pw-div {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.fg-pw-div div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

.fg-pw-div div p {
  margin: 0;
  color: #051D40;
  font-size: 15px;
}

.dt-hv-an-acct {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.dt-hv-an-acct a,
.fg-pw-div a {
  margin: 0;
  color: #051D40;
  font-size: 15px;
}

button {
  background: #051D40;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  border: none;
  border-radius: 5px 5px 5px 0px;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0px 3px 5px 0px rgba(90, 39, 179, 0.3);
  transition: 200ms ease-out;
}

button:hover {
  cursor: pointer;
  background: rgb(44, 3, 116);
  transition: 200ms ease-in;
}

.dt-hv-an-acct p {
  color: #3c4858;
}

.copyright-p {
  font-size: 14px;
  color: #3c4858;
  text-align: center;
  margin: 20px 0 0 0;
}

.logo-img{
  width: 150px;
}

@media screen and (max-width:500px) {
  section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    padding: 30px 5%;
    border: none;
    border-radius: 5px;
    background: hsl(0, 0%, 100%);
    margin: 20px 0;
  }

  .logo-img{
    width: 150px;
  }
}

@media screen and (max-width:400px) {
  .logo-img{
    width: 150px;
  }
}