@import url('bootstrap.css');
@import url('bootstrap-reboot.css');
@import url('bootstrap-grid.css');
@import url('font-awesome.css');
@import url('style.css');
@import url('helper.css');
body {
  background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.my-card {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.body {
  background: white;
  padding: 40px 36px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.body h2 {
  color: #1a1d26;
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 24px;
}
.body .text-center {
  color: #6b7280;
}
.body .text-center a {
  color: #008753;
  font-weight: 600;
}
.body .text-center a:hover {
  color: #005434;
  text-decoration: none;
}
.body .form-group {
  margin-bottom: 16px;
}
.body .form-control {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #1a1d26;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.body .form-control:focus {
  border-color: #008753;
  box-shadow: 0 0 0 3px rgba(0, 135, 83, 0.1);
  outline: none;
}
.body .form-control::placeholder {
  color: #6b7280;
}
.body label {
  color: #1a1d26;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.body input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #008753;
}
.body .text-danger {
  color: #008753 !important;
  font-size: 0.85rem;
  margin-top: 4px;
}
.btn.gradient-bg,
.btn-block.gradient-bg {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #008753, #005434);
  border: none;
  color: white;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(0, 135, 83, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn.gradient-bg:hover,
.btn-block.gradient-bg:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 135, 83, 0.35);
  color: white;
}
.btn_jumbo,
.bg-pink {
  background: #008753 !important;
  color: white !important;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
}
.btn_jumbo:hover,
.bg-pink:hover {
  background: #005e3a !important;
}
.inst-card {
  margin-top: 30px;
}
.inst-card .body {
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
}
