/* ===== Login Section ===== */
body {
  font-family: 'Poppins', sans-serif;
 background: linear-gradient(135deg, #b38741, #f0c674);
;
  color: #050505;
 
}
.login-content {
  padding: 50px 0;
}

.pro-heading-title h1 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  margin-bottom: 2rem;
}

/* ===== Form Card Style ===== */
.registration-process {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.4s ease;
}

.registration-process:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* ===== Headings ===== */
.registration-process h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #191818;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* ===== Input Fields ===== */
.form-control {
  background: rgba(255, 255, 255, 0.18);
  border: none;
  border-radius: 12px;
  color: #fff;
  padding: 12px 18px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
  outline: none;
  box-shadow: 0 0 10px #00eaff, 0 0 20px rgba(0, 234, 255, 0.4);
  transform: scale(1.02);
}

/* ===== Buttons ===== */
.btn {
  border: none;
  border-radius: 12px;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Primary Button (Create Account) */
.btn-primary {
  background: linear-gradient(135deg, #00eaff, #007bff);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #007bff, #00eaff);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.6);
}

/* Secondary Button (Login) */
.btn-secondary {
  background: linear-gradient(135deg, #ff8c00, #ff416c);
  color: #fff;
  box-shadow: 0 5px 15px rgba(255, 65, 108, 0.4);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #ff416c, #ff8c00);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 65, 108, 0.6);
}

/* Forgot Password Link */
.btn-link {
  color: #00eaff;
  font-weight: 500;
  text-decoration: none;
  margin-left: 10px;
  transition: color 0.3s;
}

.btn-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* ===== Paragraphs ===== */
.registration-process p {
  color: rgba(22, 22, 22, 0.9);
  line-height: 1.7;
  font-size: 1rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .registration-process {
    margin-bottom: 25px;
  }

  .registration-process h2 {
    text-align: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .btn-link {
    display: block;
    text-align: center;
    margin-top: 10px;
  }
}
