/* AUTH LAYOUT */
.auth-container {
  min-height: 100vh;
  padding-top: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: #0b1f1f;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(43,218,218,0.2);
  box-shadow: 0 0 40px rgba(43,218,218,0.15);
}

.auth-card h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.auth-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: #8fbcbc;
  margin-bottom: 30px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group label {
  font-size: 0.85rem;
  color: #bff5f5;
}

.input-group input {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(43,218,218,0.3);
  background: #050505;
  color: #e6ffff;
  outline: none;
}

.input-group input:focus {
  border-color: #2bdada;
  box-shadow: 0 0 10px rgba(43,218,218,0.4);
}

.auth-btn {
  margin-top: 10px;
}

.toggle-text {
  margin-top: 25px;
  text-align: center;
  font-size: 0.9rem;
  color: #8fbcbc;
}

.toggle-text a {
  color: #2bdada;
  font-weight: 600;
  text-decoration: none;
}

.toggle-text a:hover {
  text-decoration: underline;
}
