/* =====================================================
   Exclusive Content Plugin - Clean Login Form
   ===================================================== */

.exclusive-content-container {
  display: block;
  width: 100%;
  clear: both;
}

.exclusive-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 1rem;
  margin: 2rem 0;
  border-radius: 12px;
}

.exclusive-content-wrapper.exclusive-bg-clean {
  background: transparent;
}

.exclusive-content-wrapper.exclusive-bg-solid {
  /* background-color is set inline from plugin params */
}

.exclusive-content-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: 2.5rem 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.exclusive-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.exclusive-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 1.75rem 0;
  line-height: 1.5;
}

.exclusive-login-form .form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}

.exclusive-login-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.4rem;
}

.exclusive-login-form .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: #fff;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  box-sizing: border-box;
}

.exclusive-login-form .form-control:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.password-wrapper {
  position: relative;
}

.password-wrapper .form-control {
  padding-right: 3rem;
}

.toggle-password {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.25rem;
  opacity: 0.6;
  line-height: 1;
}

.toggle-password:hover {
  opacity: 1;
}

.exclusive-btn-login {
  display: block;
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #2563eb;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
  margin-top: 0.5rem;
}

.exclusive-btn-login:hover {
  background: #1d4ed8;
}

.exclusive-btn-login:active {
  transform: scale(0.98);
}

.exclusive-btn-login:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.exclusive-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-align: left;
}

.exclusive-links {
  display: flex;
  justify-content: space-between;
  margin-top: 1.25rem;
  font-size: 0.85rem;
}

.exclusive-links a {
  color: #2563eb;
  text-decoration: none;
}

.exclusive-links a:hover {
  text-decoration: underline;
}

.exclusive-register {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #555;
}

.exclusive-register a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.exclusive-register a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
  .exclusive-content-card {
    padding: 1.75rem 1.25rem;
  }

  .exclusive-title {
    font-size: 1.3rem;
  }

  .exclusive-links {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}
