
/* Wrapper pod formularz – żeby nie wisiał nisko */
.signup-wrapper {
  min-height: calc(100vh - 64px); /* viewport minus menu */
  display: flex;
  align-items: center;
}

/* Nagłówek na stronie signup */
.signup-title {
  margin-bottom: 1.5rem;
  text-align: center;
  color: #f9fafb;
}

/* Karta formularza */
.card-signup {
  background: radial-gradient(circle at top, rgba(30, 64, 175, 0.2), transparent 55%),
              rgba(15, 23, 42, 0.96);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

/* Google button delikatnie odcięty */
.signup-google-btn {
  border-radius: 999px;
  font-size: 0.95rem;
}

.signup-google-btn img {
  display: block;
}

/* Separator "or sign up with e-mail" */
.signup-divider {
  font-size: 0.85rem;
  color: #9ca3af;
}

/* Inputy formularza */
.cf-input {
  background-color: rgba(15, 23, 42, 0.9);
  border: 1px solid #334155;
  color: #e5e7eb;
  border-radius: 10px;
  font-size: 0.95rem;
}

.cf-input::placeholder {
  color: #6b7280;
  font-size: 0.9rem;
}

.cf-input:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 0.12rem rgba(56, 189, 248, 0.35);
  background-color: rgba(15, 23, 42, 0.98);
  color: #f9fafb;
}

/* Labelki nad inputami */
.form-label {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.signup-subtitle,
.text-muted {
    color: #cbd5e1 !important; /* jaśniejszy, miękki szary */
}

/* Select country */
#country.cf-input {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

/* Przycisk submit – spokojny, nie krzyczący */
.cf-submit-btn {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  border: none;
  font-weight: 600;
  padding: 0.65rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  color: #f9fafb;
  font-size: 0.9rem;
  transition: transform 0.1s ease, box-shadow 0.1s ease, opacity 0.1s ease;
}

.cf-submit-btn:hover {
  opacity: 0.98;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.45);
  transform: translateY(-1px);
}

.cf-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.9);
}

/* Drobne poprawki na mobile */
@media (max-width: 576px) {
  .signup-wrapper {
    min-height: calc(100vh - 56px);
    align-items: flex-start;
  }

  .card-signup {
    margin-top: 1.5rem;
  }

  .signup-title {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
  }
}
