.auth-container {
  display: flex;
  height: 100vh;
  background-image: url("/images/abstract_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.auth-container form {
  margin: auto;
  min-height: 400px;
  padding: 20px 50px;
  border-radius: 20px;
  background-color: white;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.192);
  width: 500px;
  position: relative;
}
@media (max-width: 640px) {
  .auth-container form {
    width: 90vw;
  }
}
.auth-container form .logo {
  background-image: url("/images/logo/logo_house.png");
  margin: auto;
  height: 50px;
  width: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .auth-container form .logo {
    width: 160px;
    bottom: 0px;
  }
}
.auth-container form h3 {
  text-align: center;
  font-family: Inter;
}
.auth-container form h3 .role {
  color: #66a8ff;
  font-weight: bold;
}
.auth-container form button {
  width: 100%;
  border-radius: 10px;
}
.auth-container form .link-container {
  position: relative;
  top: 20px;
  display: flex;
}
.auth-container form .link-container a {
  margin: auto;
}
.auth-container form .info {
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
}