/* RAZATEAM_LOGIN_COMERCIAL_DEFINITIVO_V1 */

:root {
  --rt-bg: #020b17;
  --rt-card: #0b1e34;
  --rt-card-soft: #102842;
  --rt-border: rgba(76, 150, 216, 0.34);
  --rt-text: #f7f9ff;
  --rt-muted: #8fa8c4;
  --rt-cyan: #00cfff;
  --rt-blue: #1779ff;
  --rt-violet: #7449ff;
  --rt-magenta: #e000ba;
  --rt-green: #4be3ae;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body.rt-login-page {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  place-items: center;
  margin: 0;
  padding: 24px;
  color: var(--rt-text);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background:
    radial-gradient(
      circle at 9% 7%,
      rgba(0, 184, 255, 0.10),
      transparent 31%
    ),
    radial-gradient(
      circle at 94% 87%,
      rgba(132, 47, 255, 0.12),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #010813,
      #06172c 54%,
      #080827
    );
}

.rt-page-effects {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.rt-page-glow {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  filter: blur(115px);
  opacity: 0.12;
}

.rt-page-glow-cyan {
  top: -190px;
  left: -130px;
  background: var(--rt-cyan);
}

.rt-page-glow-magenta {
  right: -170px;
  bottom: -180px;
  background: var(--rt-magenta);
}

.rt-login-card {
  position: relative;
  z-index: 2;
  width: min(440px, 100%);
  overflow: hidden;
  border: 1px solid var(--rt-border);
  border-radius: 24px;
  padding: 34px 34px 30px;
  background:
    linear-gradient(
      145deg,
      rgba(50, 95, 139, 0.09),
      transparent 44%
    ),
    rgba(10, 29, 51, 0.96);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.46),
    inset 0 1px rgba(255, 255, 255, 0.035);
}

.rt-main-logo {
  display: block;
  width: 285px;
  max-width: 90%;
  height: 142px;
  margin: -9px auto 5px;
  object-fit: contain;
  filter:
    drop-shadow(
      0 11px 20px rgba(0, 0, 0, 0.38)
    );
}

.rt-heading {
  text-align: center;
}

.rt-eyebrow {
  margin: 4px 0 14px;
  color: var(--rt-cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.rt-heading h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.rt-subtitle {
  margin: 13px 0 30px;
  color: var(--rt-muted);
  font-size: 0.87rem;
}

.rt-alert {
  display: grid;
  gap: 3px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 91, 112, 0.38);
  border-radius: 12px;
  padding: 12px;
  color: #ffd0d6;
  background: rgba(139, 27, 46, 0.22);
}

.rt-alert span {
  color: #dba5ae;
  font-size: 0.78rem;
}

.rt-login-form {
  display: grid;
  gap: 10px;
}

.rt-login-form label {
  margin-top: 4px;
  color: #eaf1fb;
  font-size: 0.77rem;
  font-weight: 850;
}

.rt-input-group {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(54, 105, 153, 0.42);
  border-radius: 12px;
  background: rgba(2, 14, 27, 0.72);
  transition:
    border-color 0.17s ease,
    box-shadow 0.17s ease;
}

.rt-input-group:focus-within {
  border-color: var(--rt-cyan);
  box-shadow:
    0 0 0 3px rgba(0, 207, 255, 0.075),
    0 0 22px rgba(0, 207, 255, 0.09);
}

.rt-input-symbol {
  display: grid;
  height: 100%;
  place-items: center;
  border-right: 1px solid rgba(56, 118, 169, 0.18);
  color: var(--rt-cyan);
  font-size: 0.82rem;
  font-weight: 900;
  background: rgba(16, 47, 76, 0.34);
}

.rt-input-group input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 14px 13px;
  color: white;
  font-size: 0.9rem;
  outline: none;
  background: transparent;
}

.rt-input-group input::placeholder {
  color: #7187a2;
}

.rt-login-button {
  display: flex;
  justify-content: center;
  gap: 19px;
  align-items: center;
  margin-top: 21px;
  border: 1px solid rgba(34, 209, 255, 0.72);
  border-radius: 12px;
  padding: 15px 18px;
  color: white;
  font-size: 0.96rem;
  font-weight: 900;
  cursor: pointer;
  background:
    linear-gradient(
      105deg,
      var(--rt-cyan) 0%,
      var(--rt-blue) 30%,
      var(--rt-violet) 63%,
      var(--rt-magenta) 100%
    );
  box-shadow:
    0 13px 31px rgba(52, 75, 235, 0.27),
    0 0 20px rgba(224, 0, 186, 0.10);
  transition:
    transform 0.17s ease,
    filter 0.17s ease,
    box-shadow 0.17s ease;
}

.rt-login-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.09);
  box-shadow:
    0 17px 38px rgba(52, 75, 235, 0.34),
    0 0 27px rgba(224, 0, 186, 0.17);
}

.rt-login-button b {
  font-size: 1.05rem;
}

.rt-protection {
  display: flex;
  justify-content: center;
  gap: 9px;
  align-items: center;
  margin-top: 24px;
  color: #8ea4be;
  font-size: 0.72rem;
}

.rt-protection span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rt-green);
  box-shadow:
    0 0 12px rgba(75, 227, 174, 0.8);
}

.rt-footer {
  margin-top: 17px;
  color: #7f95af;
  font-size: 0.69rem;
  text-align: center;
}

@media (max-width: 520px) {
  body.rt-login-page {
    padding: 14px;
  }

  .rt-login-card {
    border-radius: 20px;
    padding: 25px 20px;
  }

  .rt-main-logo {
    width: 245px;
    height: 124px;
  }

  .rt-heading h1 {
    font-size: 2rem;
  }
}


/* RAZATEAM_LOGO_TIGHT_FINAL */
.rt-main-logo {
  width: 330px !important;
  max-width: 92% !important;
  height: auto !important;
  margin: 4px auto 24px !important;
  object-fit: contain !important;
}

@media (max-width: 520px) {
  .rt-main-logo {
    width: 285px !important;
    max-width: 94% !important;
  }
}
