/* ── Planetanix branding ── */
:root {
  --primary-color:       #10B981;
  --primary-color-light: #D1FAE5;
  --primary-color-dark:  #0d9488;
}

/* ── Primary buttons hover fix ── */
.c-button--primary {
  transition: background-color 0.15s;
}

.c-button--primary:hover {
  background-color: #059669;
  border-color: #059669;
}

/* ── CTA-кнопка ── */
.c-button.c-input {
  background: linear-gradient(135deg, #10B981 0%, #0d9488 100%);
  border-color: transparent;
  color: #ffffff;
  justify-content: center;
  transition: background-color 0.15s;
}

.c-button.c-input:hover {
  background: linear-gradient(135deg, #059669 0%, #0f766e 100%);
  border-color: transparent;
}

.c-signin-social-button {
  background: linear-gradient(135deg, #10B981 0%, #0d9488 100%);
  border-color: transparent;
  box-shadow: 0 4px 14px -2px rgba(16, 185, 129, 0.35);
  transition: box-shadow 0.15s, opacity 0.15s;
}

.c-signin-social-button span {
  color: #ffffff;
}

.c-signin-social-button:hover {
  opacity: 0.9;
  box-shadow: 0 8px 20px -4px rgba(16, 185, 129, 0.45);
}