@charset "utf-8";
/* CSS Document */

.theme-primary {
color: #1d2675;
}

.theme-secondary {
color: #3ea2a8;
}
.calculate-form{ background-color: #fff; }

.form-section {
    background-color: #f4f5f5;
    border-radius: 1rem;
    padding: 50px;
}

.form-section label {
    font-weight: 400;
    color: #000;
    font-size: 15px;
    text-transform: capitalize;
}

.btn.submitButton {
background-color: #3ea2a8;
color: #fff;
font-weight: bold;
border: none;
padding: 11px 12px;
}

.btn.submitButton:hover {
background-color: #1d267a; /* Added missing "a" to make the color valid */
}

.note {
font-size: 14px;
color: #000;
margin-top: 1rem;
}
.form-control {
display: block;
width: 100%;
padding: .485rem .75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: var(--bs-body-color);
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-color: var(--bs-body-bg);
background-clip: padding-box;
border: var(--bs-border-width) solid #ced7e0;
border-radius: 5px;
transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}


.form-control:focus, .form-select:focus {
color: var(--bs-body-color);
background-color: var(--bs-body-bg);
border-color: #1d2675;
outline: 0;
box-shadow: none;
}
.form-check-input:checked {
background-color:#1d2675;
border-color:#1d2675;
}
.form-check-input:focus {
border-color:#1d2675;
outline: 0;
box-shadow: none;
}
h1 span{color:#3ea2a8;}
.section-heading h1, .section-heading h3{font-weight:600;}
.section-heading h1{font-weight:600;}
.fs-60 {
font-size: 60px;
}
.fs-30 {
font-size: 30px;
}
select.form-select {
padding: .485rem .75rem;
}

.form-select {font-size: 14px;}
form input[type=number] {
    max-width: 100%!important;
    
}

#fullScreenLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8); /* White background with slight transparency */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Center content */
.loaderContent {
  text-align: center;
}

/* Spinner animation */
.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



select.form-select {
  
    font-size: 14px;
}