/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 08 2026 | 12:39:39 */
/* ===== WRAPPER ===== */
.dc-cibil-wrapper {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(15, 61, 62, 0.08);
  transition: 0.3s ease;
}

/* Optional hover lift */
.dc-cibil-wrapper:hover {
  transform: translateY(-3px);
}

/* ===== BANNER ===== */
.dc-cibil-banner {
  background: linear-gradient(135deg, #0F3D3E, #1F6F6C);
  border-radius: 14px;
  padding: 30px;
  color: #ffffff;
  margin-bottom: 25px;
}

/* Highlight text */
.dc-cibil-banner h2 span {
  color: #D4AF37;
}

/* ===== TITLE ===== */
.dc-cibil-title {
  text-align: center;
  margin-bottom: 20px;
  color: #0F3D3E;
  font-weight: 600;
}

.dc-cibil-title span {
  color: #D4AF37;
}

/* ===== FORM GRID ===== */
.dc-form-grid {
  display: grid;
  /*grid-template-columns: repeat(2, 1fr);*/
  gap: 15px;
}

/* ===== INPUTS ===== */
.dc-form-grid input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #D1E5E4;
  font-size: 14px;
  background: #F7FAFA;
  color: #0F3D3E;
  transition: all 0.2s ease;
}

/* Input focus */
.dc-form-grid input:focus {
  border-color: #1F6F6C;
  box-shadow: 0 0 0 2px rgba(31, 111, 108, 0.2);
  outline: none;
}

/* ===== CHECKBOX ===== */
.dc-checkbox {
  display: block;
  margin: 15px 0;
  font-size: 14px;
  color: #0F3D3E;
}

/* ===== SUBMIT BUTTON ===== */
input[type="submit"] {
  background-color: #0F3D3E !important;
}
input[type="submit"]:hover {
  background-color: #1F6F6C !important; /* Darker green */
}
.dc-submit-btn {
  width: 100%;
  padding: 14px;
  background: #0F3D3E !important; /* DARK */
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover → LIGHT */
.dc-submit-btn:hover {
  background: #1F6F6C;
  transform: translateY(-2px);
}

/* ===== RESULT BOX ===== */
.dc-result {
  margin-top: 20px;
  padding: 15px;
  background: #F1F7F7;
  border-radius: 10px;
  text-align: center;
  color: #0F3D3E;
  border: 1px solid rgba(15, 61, 62, 0.08);
}

/* ===== WHATSAPP BUTTON ===== */
.dc-whatsapp-btn {
  display: block;
  margin-top: 15px;
  text-align: center;
  background: #0F3D3E; /* DARK */
  color: #ffffff;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover → LIGHT */
.dc-whatsapp-btn:hover {
  background: #3A8D89;
  transform: translateY(-2px);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .dc-form-grid {
    /*grid-template-columns: 1fr;*/
  }

  .dc-cibil-wrapper {
    padding: 20px;
  }
}
