.allauth-container {
  width: 100%;
  height: 100vh;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.allauth-form-parent-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.allauth-form {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 5px;
  justify-content: center;
  align-items: start;

  padding: 16px;
  border: 4px solid #3f7bfa;
  border-radius: 20px;
  background-color: #192d42;
  color: white;
  font-weight: lighter;
}

.allauth-form input,
label {
  width: 100% !important;
  border-radius: 10px;
  padding: 5px;
  border: none;
}

.allauth-form input::placeholder {
  font-weight: lighter;
}

.allauth-btns {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.allauth-btns button {
  font-weight: lighter;
}

.form-title {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 25px;

}