/* =========================================================
   Deposit page styles (blue theme)
   Full CSS with bullets + inline email improvements
   ========================================================= */

/* ---- Card blocks ---- */
.deposit-card{
  border: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
  overflow: hidden;
  margin-bottom: 22px;
}

.deposit-card-header{
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(13,110,253,0.16), rgba(13,110,253,0.05));
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.deposit-card-header h4{
  margin: 0;
  font-size: 1.15rem;
  font-weight: 900;
}

.deposit-card-header p{
  margin: 2px 0 0 0;
  color: rgba(0,0,0,0.65);
  font-size: 0.95rem;
}

.deposit-card-body{
  padding: 18px;
}

/* ---- Bullets in intro card (styled bullets, blue theme) ---- */
.deposit-bullets{
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
}

.deposit-bullets li{
  position: relative;
  padding-left: 26px;
  margin: 8px 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(0,0,0,0.75);
}

.deposit-bullets li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.4rem;
  line-height: 1;
  color: #0d6efd;
  font-weight: 900;
}

/* ---- Note / info box ---- */
.deposit-info{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(13,110,253,0.10), rgba(13,110,253,0.03));
  border-left: 4px solid #0d6efd;
  margin-top: 14px;
}

.deposit-info i{
  font-size: 1.25rem;
  color: #0d6efd;
  margin-top: 2px;
}

.deposit-info strong{
  display: block;
  font-weight: 900;
  color: #084298;
  margin-bottom: 2px;
}

.deposit-info p{
  margin: 4px 0 0 0;
  color: rgba(0,0,0,0.75);
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Email emphasis inside info box */
.deposit-info a{
  margin-left: 4px;
  font-weight: 800;
  color: #0b5ed7;
  text-decoration: underline;
}

.deposit-info a:hover{
  color: #084298;
}

/* ---- Form layout ---- */
#formRows{
  max-width: 1100px;
  margin: 0 auto;
}

.formRow{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 16px 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  margin-top: 18px;
}

.formRow .field{
  flex: 1 1 33%;
  padding: 10px;
  min-width: 260px;
}

.formRow label{
  font-weight: 800;
  display: block;
  margin-bottom: 6px;
}

.req{
  color: #dc3545;
  font-weight: 900;
}

.formRow input[type="text"],
.formRow input[type="email"]{
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 0 12px;
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease;
}

.formRow input[type="text"]:focus,
.formRow input[type="email"]:focus{
  border-color: rgba(13,110,253,0.55);
  box-shadow: 0 0 0 .25rem rgba(13,110,253,0.15);
}

/* ---- Buttons ---- */
.btn-soft-primary{
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(13,110,253,0.35);
  background: rgba(13,110,253,0.10);
  color: #0b5ed7;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
  white-space: nowrap;
}

.btn-soft-primary:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 12px 22px rgba(13,110,253,0.22);
  color: #084298;
  text-decoration: none;
}

.btn-primary-gradient{
  height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  color: #fff;
  box-shadow: 0 12px 26px rgba(13,110,253,0.25);
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}

.btn-primary-gradient:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 16px 34px rgba(13,110,253,0.30);
}

/* ---- Email + checkbox block ---- */
.contact-card{
  max-width: 700px;
  margin: 18px auto 0;
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.02);
  text-align: center;
}

.contact-card label{
  font-weight: 800;
}

.contact-card .checkbox{
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: rgba(0,0,0,0.75);
}

/* ===== Email inline row (label + input same line) ===== */
.email-inline{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.email-inline label{
  margin: 0;
  font-weight: 800;
}

.email-inline input[type="email"]{
  width: min(420px, 90vw);
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 0 12px;
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease;
}

.email-inline input[type="email"]:focus{
  border-color: rgba(13,110,253,0.55);
  box-shadow: 0 0 0 .25rem rgba(13,110,253,0.15);
}

/* Small helper text */
.muted{
  color: rgba(0,0,0,0.65);
  font-size: 0.95rem;
}
