/* BrainsWay "Moved" landing – standalone styles */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: 'Ubuntu', sans-serif; }
.root {
  display: flex;
  flex-direction: row;
  height: 100vh;
  background: #fff;
  justify-content: space-between;
}
.logo-wrap {
  position: absolute;
  width: 100%;
  display: flex;
}
.logo {
  margin-top: 29px;
  margin-bottom: 35px;
  margin-left: 22px;
}
.content-wrap {
  flex: 0 1 36%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.content-inner { padding-top: 0; }
.content-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  max-width: 28rem;
}
.h0 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
  font-size: 2rem;
  text-align: center;
  margin: 0;
}
.text-center.w-96 {
  text-align: center;
  max-width: 24rem;
  margin: 0;
  color: #30394A;
}
.actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 24rem;
}
.btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24rem;
  height: 3.5rem;
  font-size: 1.5rem;
  border-radius: 9px;
  padding: 7px 42px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(to right, hsl(195, 84%, 56%) 0%, #005D7D 100%);
  border: none;
  cursor: pointer;
}
.btn-main:hover {
  background: linear-gradient(to right, #168AB2 0%, #0B4F67 100%);
}
.btn-main:focus {
  background: linear-gradient(to right, #2FBCED 0%, #1383AA 100%);
}
.btn-main:active {
  background: hsla(195, 81%, 22%, 1);
}
.link-url {
  color: hsla(195, 72%, 52%, 1);
  cursor: pointer;
  text-decoration: none;
}
.link-url:hover { text-decoration: underline; }
.link-url:active { color: hsla(195, 81%, 22%, 1); }
.hint { margin: 0; }
.panel-img {
  flex: 0 1 58.333%;
  background: url('login-img.svg') center/cover no-repeat;
}
@media (max-width: 1023px) {
  .root { flex-direction: column; }
  .logo-wrap { justify-content: center; }
  .logo { margin-left: 0; }
  .content-wrap {
    flex: 1 1 auto;
    width: 100%;
    justify-content: center;
  }
  .content-inner { padding-top: 150px; }
  .panel-img {
    flex: 1 1 auto;
    width: 100%;
    margin-top: 3rem;
  }
}
@media (max-width: 1599px) {
  .h0 { font-size: 1.5rem; }
}
