* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
}

body {
  background: linear-gradient(
    90deg,
    #0f0f0f 0%,
    #0f0f0f 50%,
    #171717 50%,
    #171717 100%
  );
  color: #e5e5e5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 48px;
}

.alert-display-box {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background-color: #ed4956;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 10;
}

.top-left-logo {
  position: fixed;
  top: 44px;
  left: 16px;
  z-index: 11;
}

.top-left-logo img {
  width: 28px;
  height: 28px;
  display: block;
}

.page {
  width: 100%;
  max-width: 935px;
  margin: 32px auto 0;
  padding: 32px 20px 0;
  display: flex;
  gap: 64px;
  justify-content: center;
  flex: 1;
}

.phone-mock {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.phone-mock img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.phone-caption {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  color: #fff;
  /* font-size: 14px;
  font-weight: 600; */
  line-height: 1.3;
  /* text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35); */
  text-align: center;
}

.phone-caption span {
  background: linear-gradient(
    90deg,
    #feda75 0%,
    #d62976 45%,
    #962fbf 70%,
    #4f5bd5 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.auth-box {
  width: 200%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.panel {
  background: #151515;
  border: 1px solid #2a2a2a;
  padding: 40px 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand img {
  width: 175px;
  margin-bottom: 32px;
}

.login-title {
  font-size: 16px;
  font-weight: 600;
  color: #e6e6e6;
  margin: 16px 0;
  text-align: left;
  width: 100%;
}

form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

form input {
  background: #1d1d1d;
  border: 1px solid #2a2a2a;
  border-radius: 3px;
  padding: 9px 8px;
  font-size: 12px;
  color: #e6e6e6;
}

form input::placeholder {
  color: #9b9b9b;
}

.login-btn {
  margin-top: 8px;
  background: #0095f6;
  border: 1px solid transparent;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 7px 0;
  border-radius: 8px;
  cursor: pointer;
}

.or-sep {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin: 16px 0 18px;
}

.or-sep hr {
  flex: 1;
  border: none;
  border-top: 1px solid #2a2a2a;
}

.or-sep span {
  font-size: 12px;
  font-weight: 600;
  color: #9b9b9b;
}

.fb-login {
  background: none;
  border: none;
  color: #8aa4ff;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.fb-login svg {
  width: 16px;
  height: 16px;
  fill: #8aa4ff;
}

.forgot {
  margin-top: 14px;
  font-size: 12px;
  color: #b5c7ff;
  text-decoration: none;
}

.signup-panel {
  background: #151515;
  border: 1px solid #2a2a2a;
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
}

.signup-panel a {
  color: #0095f6;
  font-weight: 600;
  text-decoration: none;
}

.download {
  text-align: center;
  font-size: 14px;
  color: #e6e6e6;
  margin-top: 10px;
}

.get-apps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.get-apps img {
  height: 40px;
}

.site-footer {
  margin-top: auto;
  padding: 16px 16px 28px;
  text-align: center;
  font-size: 12px;
  color: #b5b5b5;
  background: #0f0f0f;
}

.footer-divider {
  border: none;
  border-top: 1px solid #2a2a2a;
  margin: 0 0 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-links a {
  color: #b5b5b5;
  text-decoration: none;
  font-size: 12px;
}

.footer-meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 875px) {
  body {
    background: #0f0f0f;
  }

  .phone-mock {
    display: none;
  }

  .page {
    margin-top: 0;
  }
}
