.auth-layout-auth-page {
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #52b8cd, #95d8e5);
  padding: 40px 15px 22px;
  color: #00283c;
}

.auth-layout-navbar-header {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 320px;
  width: 100%;
  height: 60px;
  border-radius: 12px;
  margin-bottom: 28px;
}

.auth-layout-navbar-header .auth-layout-logo {
  max-width: 200px;
  width: 100%;
}

.auth-layout-navbar-header .auth-layout-logo img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .auth-layout-auth-page {
    background: white;
    padding: 15px 15px 22px;
    justify-content: start;
  }

  .auth-layout-navbar-header {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(to bottom, #52b8cd, #95d8e5);
    margin-bottom: 32px;
  }

  .auth-layout-navbar-header .auth-layout-logo {
    max-width: 111px;
  }
}
