body, html {
  margin: 0;
  padding: 0;
  background: var(--auth-bg);
  font-family: "Open Sans", sans-serif;
}

h1 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 0;
  text-align: center;
}

.container {
  margin: 40px;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1000px) {
  .container {
    flex-direction: column;
  }
}
.container > div {
  flex-grow: 1;
}
@media (min-width: 1000px) {
  .container > div {
    flex-basis: 0;
  }
}
.container .banner {
  background-image: url("/images/doctor.jpg");
  background-size: cover;
  background-position-x: 30%;
  width: 600px;
  height: 600px;
  border-radius: 16px;
}
@media (max-width: 1000px) {
  .container .banner {
    width: 100%;
    height: 300px;
  }
}
.container .not-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.container .not-banner .logo {
  color: white;
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 1000px) {
  .container .not-banner .logo {
    margin-bottom: 20px;
  }
}
.container .not-banner .logo img {
  width: 32px;
  height: 32px;
}
.container .not-banner .white-box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 800px;
  padding: 20px 80px;
}
@media (max-width: 1000px) {
  .container .not-banner .white-box-container {
    padding: 0;
  }
}
.container .not-banner .white-box-container .white-box {
  background-color: white;
  border-radius: 16px;
  padding: 32px;
  color: black;
  width: 100%;
}
.container .not-banner .white-box-container .white-box label {
  display: block;
}
.container .not-banner .white-box-container .white-box input[type=text], .container .not-banner .white-box-container .white-box input[type=email], .container .not-banner .white-box-container .white-box input[type=date], .container .not-banner .white-box-container .white-box input[type=number], .container .not-banner .white-box-container .white-box input[type=datetime-local], .container .not-banner .white-box-container .white-box input[type=password], .container .not-banner .white-box-container .white-box textarea, .container .not-banner .white-box-container .white-box select {
  margin-bottom: 10px;
  width: 100%;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #cccccc;
  min-height: 36px;
  font-size: inherit !important;
}
.container .not-banner .white-box-container .white-box .button {
  text-decoration: none;
  background-color: var(--button-bg);
  border: none;
  color: white;
  padding: 12px;
  margin: 16px 0;
  border-radius: 12px;
  display: block;
  text-align: center;
  font-size: inherit !important;
}
.container .not-banner .white-box-container .white-box .button:hover {
  filter: brightness(85%);
}

div.roles a {
  display: flex;
  margin: 20px 0;
  padding: 10px 20px;
  justify-content: start;
  align-items: center;
  border: 1px solid #cccccc;
  border-radius: 10px;
  text-decoration: none !important;
  color: black;
}
div.roles a:hover {
  border-color: black;
}
div.roles a:before {
  box-sizing: border-box;
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 1000px;
  border: 6px solid var(--primary);
  margin-right: 16px;
}

.page {
  text-align: right;
  font-size: 12px;
  margin-top: 24px;
}

.link {
  color: var(--link-color);
}

/*# sourceMappingURL=welcome.css.map */
