*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Poppins', sans-serif;
}


html{
    width:100%;
    min-height:100vh;
    padding: 0;
    margin:0;
}

body{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height: 100vh;       /* 💡 Ensures the body takes up the full screen height */
  position:relative;
  overflow-x: hidden;      /* 💡 Prevents horizontal scrolling entirely */
  overflow-y: clip;        /* 💡 Allows regular page scrolling down only if needed */
  background:
  radial-gradient(circle at top left, #2a2a2a, transparent 40%),
  radial-gradient(circle at bottom right, #3b2a12, transparent 35%),
  linear-gradient(135deg, #0b0b0b, #111111, #1a1a1a);
  background-attachment: fixed; /* 👈 Forces the gradient layers to remain pinned as a static backdrop */
}    

body::before,
body::after{
  content:'';
  position:absolute;
  width:300px;
  height:300px;
  border-radius:50%;
  background:rgba(255,255,255,0.05);
  filter:blur(80px);
}

body::before{
  top:-100px;
  left:-100px;
}

body::after{
  bottom:-100px;
  right:-100px;
}
.form-container{
  width:100%;
  max-width:520px;
  padding: 40px; 
  border-radius:24px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.15);
  box-shadow:
  0 8px 32px rgba(0,0,0,0.45),
  0 0 20px rgba(212,165,76,0.08);
  color:#f5f5f5;
  position:relative;
  z-index:2;
}

.form-container h2{
  text-align:center;
  font-size:32px;
  margin-bottom:10px;
  font-weight:700;
}

.subtitle{
  text-align:center;
  margin-bottom: 30px; /* Reduced from 30px to save more vertical space */
  color:rgba(255,255,255,0.8);
  font-size:14px;
}

.input-group{
  margin-bottom:18px;
}

.input-group label{
  display:block;
  margin-bottom:8px;
  font-size:16px;
  font-weight:500;
}

.input-box{
  position:relative;
}

.input-box i{
  position:absolute;
  top:50%;
  left:15px;
  transform:translateY(-50%);
  color:rgba(255,255,255,0.7);
}

.input-box input{
  width:100%;
  padding:14px 14px 14px 45px;
  border:none;
  outline:none;
  border-radius:14px;
  background:rgba(255,255,255,0.12);
  color:white;
  font-size:15px;
  transition:0.3s ease;
}

.input-box input::placeholder{
  color:rgba(255,255,255,0.6);
}

.input-box input:focus{
  border-color:white;
  background:rgba(255,255,255,0.18);
  box-shadow:0 0 0 4px rgba(212,165,76,0.15);
}

.signup-btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:14px;
  background:linear-gradient(
    135deg,
    #d4a54c,
    #b8862b
  );
  color:#111;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:0.3s ease;
}

.signup-btn:hover{
  transform:translateY(-2px);
  box-shadow:
  0 8px 25px rgba(212,165,76,0.35);
}

.divider{
  text-align:center;
  margin:25px 0;
  position:relative;
  color:rgba(255,255,255,0.7);
  font-size:14px;
}

.divider::before,
.divider::after{
  content:'';
  position:absolute;
  top:50%;
  width:38%;
  height:1px;
  background:rgba(255,255,255,0.2);
}

.divider::before{
  left:0;
}

.divider::after{
  right:0;
}

.social-buttons{
  display:flex;
  gap:12px;
}

.social-btn{
  flex:1;
  padding:13px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(255,255,255,0.1);
  color:white;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  cursor:pointer;
  transition:0.3s ease;
  font-size:15px;
}

.social-btn:hover{
  background:rgba(212,165,76,0.12);
  transform:translateY(-2px);
}

.footer-text{
  text-align:left;
  margin-top:12px;
  font-size:16px;
  gap :10px;
  color:rgba(255,255,255,0.8);
}

.footer-text a{
  color:#d4a54c;
  font-weight:600;
  text-decoration:none;
}

@media(max-width:480px){

  .form-container{
    padding:30px 22px;
  }

  .form-container h2{
    font-size:26px;
  }

  .social-buttons{
    flex-direction:column;
  }

}


.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  max-width:1000px;
  margin:0 auto;
}
.panel {
  flex:1;
  min-width:320px;
  padding: 10px;
}
.donor-row {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 10px ;
  margin-bottom:10px;
  background:rgba(255,255,255,0.08);
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.1);
}
.donor-row .name { font-weight:600; }
.donor-row .meta { font-size:12px; color:rgba(255,255,255,0.6); }
.donor-row .amount { color:#d4a54c; font-weight:700; }
.progress-track {
  width:100%;
  height:25px;
  background:rgba(255,255,255,0.1);
  border-radius:10px;
  overflow:hidden;
  margin-top:10px;
}
.progress-fill {
  height:100%;
  background:linear-gradient(135deg,#d4a54c,#b8862b);
}

.forms-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin:40px auto;
    width:95%;
    max-width:1600px;
}


.page-title {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 32px;
  font-weight: 700;
  margin-top: 20px;
}

.page-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
}

.quick-amounts {
  display: flex;
  gap: 8px;
  margin: 12px 0;
}

.quick-amounts button {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: white;
  cursor: pointer;
}

.input-row {
  display: flex;
  gap: 12px;
}

.summary-box {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
}

.summary-row, .total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.total-row {
  font-weight: 700;
  font-size: 18px;
  margin-top: 12px;   /* add this line */
}

.fee-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  margin: 12px 0;
}

.thank-you-text {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin: 16px 0;
}

.page-section {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto 12px auto;  /* changed from "0 auto" */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.raised {
  float: left;
}