
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;600&family=Urbanist:wght@600&display=swap');

:root {
  --primary: #0e1620;
  --card: #131d2c;
  --border: rgba(255, 255, 255, 0.15);
  --accent: #f57c1d;
  --accent-strong: #ff9c3a;
  --text: #f2f5fb;
  --muted: rgba(242, 245, 251, 0.7);
}

* {
  box-sizing: border-box;
  font-family: 'Mulish', system-ui, sans-serif;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(201, 154, 85, 0.3), transparent 50%),
    radial-gradient(circle at bottom, rgba(201, 154, 85, 0.2), transparent 45%),
    #05090f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.login-wrapper {
  width: 100%;
  max-width: 420px;
}

.login-card {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.logo {
  width: 160px;
  margin: 0 auto 0.5rem;
}

.subtitle {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.login-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  text-align: left;
}

input[type="text"],
input[type="email"] {
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 0.95rem 1rem;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input[type="tel"] {
  border-radius: 8px;
  border: 1px solid rgba(201, 154, 85, 0.7);
  padding: 0.95rem 1rem;
  font-size: 1rem;
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.9), rgba(18, 18, 18, 0.75));
  color: var(--text);
  letter-spacing: 0.05em;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.35);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input[type="tel"]:focus {
  border-color: #c99a55;
  box-shadow: inset 0 0 18px rgba(201, 154, 85, 0.3), 0 0 0 3px rgba(201, 154, 85, 0.2);
  outline: none;
}

input[type="password"] {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.95rem 1rem;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus {
  border-color: var(--accent-strong);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 124, 29, 0.25);
}

input[type="password"]:focus {
  border-color: #ffb347;
  box-shadow: 0 0 0 3px rgba(255, 179, 71, 0.25);
  outline: none;
}

.submit-btn {
  background: linear-gradient(180deg, #c99a55, #a97d42);
  border: none;
  border-radius: 6px;
  padding: 0.95rem 1rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.footer-note {
  font-size: 0.85rem;
  color: #b8b8b8;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 0.5rem;
}

.footer-logo {
  width: 120px;
  margin: 0 auto;
  opacity: 0.65;
}

.help-link {
  font-size: 0.95rem;
  color: #38535f;
  font-weight: 500;
}

.help-link a {
  color: #c99a55;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}


@media (max-width: 480px) {
  .login-card {
    padding: 2rem 1.5rem;
  }

  .logo {
    width: 150px;
  }

  .submit-btn {
    font-size: 0.95rem;
  }
}
