/* General reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  background: #0f172a; /* dark navy */
  color: #ffffff;
}

/* Layout */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

/* Logo */
.header {
  margin-bottom: 32px;
  text-align: center;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 26px;
}

.logo-part {
  color: #ffffff;
}

.logo-accent:nth-of-type(1) {
  color: #00d1ff; /* cyan accent */
}

.logo-accent:nth-of-type(2) {
  color: #9f7aea; /* purple accent */
}

/* Card */
.card {
  width: 100%;
  max-width: 420px;
  background: #111827; /* card dark */
  border-radius: 6px;
  padding: 32px 32px 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
}

.card-title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-bottom: 28px;
}

/* Form fields */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field-label {
  font-size: 13px;
  color: #9ca3af;
  display: block;
  margin-bottom: 6px;
}

.field input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #1f2937;
  background-color: #020617;
  color: #e5e7eb;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input::placeholder {
  color: #6b7280;
}

.field input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px #3b82f6;
}

/* Captcha mock */
.captcha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9fafb;
  color: #111827;
  border-radius: 4px;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  gap: 8px;
}

.captcha-left {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
}

.captcha-left input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.captcha-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  line-height: 1.1;
}

.captcha-logo {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(135deg, #4b9af6, #34d399);
  margin-bottom: 3px;
}

.captcha-brand {
  font-weight: 600;
}

.captcha-links {
  color: #6b7280;
}

/* Buttons */
.btn-primary {
  width: 100%;
  margin-top: 6px;
  padding: 10px 14px;
  border-radius: 4px;
  border: none;
  background: #3b82f6;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.05s ease;
}

.btn-primary:hover {
  background: #2563eb;
}

.btn-primary:active {
  transform: translateY(1px);
}

.forgot-btn {
  margin-top: 10px;
  width: 100%;
  text-align: center;
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 13px;
  cursor: pointer;
}

.forgot-btn:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
  .card {
    padding: 24px 20px 18px;
  }

  .logo-text {
    font-size: 22px;
  }
}
/* Background just to match the original preview */
body {
  margin: 0;
  padding: 20px;
  background: #111827; /* dark navy */
}

/* Logo container */
.revoicer-logo {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

/* Common text */
.revoicer-text {
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 26px;
}

/* Colors */
.revoicer-re,
.revoicer-voic,
.revoicer-r {
  color: #ffffff;
}

/* Stylized E */
.revoicer-e {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  margin: 0 1px;
}

/* Bars inside the E */
.revoicer-e .bar {
  width: 18px;
  height: 4px;
  border-radius: 999px;
}

/* Top & middle cyan, bottom purple (like original) */
.revoicer-e .bar-top,
.revoicer-e .bar-mid {
  background: #37cfff; /* light cyan */
}

.revoicer-e .bar-bot {
  background: #a855f7; /* purple */
}
.revoicer-hero {
  background: #0f172a; /* same dark navy as login page */
  color: #ffffff;
  padding: 60px 16px;
}

.revoicer-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.revoicer-hero-text {
  text-align: center;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 14px;
}

.hero-description {
  font-size: 15px;
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 22px;
}

.hero-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: #3b82f6;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.05s ease;
}

.hero-btn:hover {
  background: #2563eb;
}

.hero-btn:active {
  transform: translateY(1px);
}

/* Larger screens */
@media (min-width: 768px) {
  .revoicer-hero {
    padding: 80px 24px;
  }

  .revoicer-hero-text {
    text-align: left;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
    max-width: 520px;
  }
}
