/* RESET SCOPE */
.u7b-auth,
.u7b-auth * {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* ROOT */
.u7b-auth {
  min-height: 100vh;
  display: flex;
  background: black;
  color: #fff;
}

/* LEFT PANEL */
.u7b-auth-left {
  flex: 1;
  background: linear-gradient(160deg, #1c1f26, #0f1116);
  border-radius: 0 32px 32px 0;
  padding: 40px;
  display: none;
}

.u7b-brand {
  font-size: 22px;
  font-weight: 700;
  color: #ff5c35;
}

.u7b-hero {
  margin-top: 120px;
}

.u7b-hero h1 {
  font-size: 56px;
  margin-bottom: 10px;
}

.u7b-hero p {
  letter-spacing: 2px;
  opacity: .8;
}

.u7b-mascot {
  font-size: 64px;
  margin-top: 40px;
}

/* RIGHT PANEL */
.u7b-auth-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.u7b-login-box {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

.u7b-login-box h2 {
  margin-bottom: 5px;
}

.u7b-subtext {
  margin-bottom: 20px;
  font-size: 14px;
  color: #aaa;
}

.u7b-subtext a {
  color: #ff5c35;
  text-decoration: none;
}

/* BUTTONS */
.u7b-btn {
  width: 100%;
  border-radius: 999px;
  padding: 14px;
  font-size: 15px;
  cursor: pointer;
  border: none;
  margin-bottom: 14px;
}

.u7b-btn-google {
  background: #1c1f26;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.u7b-btn-google img {
  width: 18px;
}

.u7b-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 16px 0;
}

.u7b-social button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1c1f26;
  border: none;
  color: #fff;
}

.u7b-divider {
  text-align: center;
  font-size: 12px;
  color: #777;
  margin: 16px 0;
}

/* INPUT */
.u7b-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #222;
  background: #111;
  color: #fff;
  margin-bottom: 14px;
}

.u7b-password {
  position: relative;
}

.u7b-password span {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #aaa;
}

/* LINKS */
.u7b-forgot {
  text-align: right;
  margin-bottom: 16px;
}

.u7b-forgot a {
  font-size: 13px;
  color: #aaa;
  text-decoration: none;
}

/* PRIMARY */
.u7b-btn-login {
  background: linear-gradient(135deg, #ff5c35, #ff7a4d);
  color: #fff;
  font-weight: 600;
}

/* OUTLINE */
.u7b-btn-outline {
  background: transparent;
  border: 1px solid #444;
  color: #fff;
}

/* RESPONSIVE */
@media (min-width: 992px) {
  .u7b-auth-left {
    display: block;
  }
}
