<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&amp;display=swap');
* {
    box-shadow: none;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    width: 100%;
    min-height: 100vh;
    color:#000;
    font-weight: 400;
    font-size: 17px;
}

.container {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.container-fluid {
    width: 100%;
    margin: 3rem auto 3rem auto;
  }
  
  @media (min-width: 576px) {
    .container-fluid {
      max-width: 540px;
    }
  }
  
  @media (min-width: 768px) {
    .container-fluid {
      max-width: 900px;
    }
  }
  form {
    padding: 2.5rem 0.625rem;
    border-radius: 0.25rem;
  }
  
  @media (min-width: 480px) {
    form {
      padding: 2.5rem;
    }
  }
  
  .form-group {
    padding: 0.25rem;
    border-radius: 10px;
  }

p &gt; label {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 400;
    text-transform: capitalize;
  }
  ul &gt; li{
    text-transform: capitalize;
  }

.switch-holder {
    display: flex;
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    justify-content: space-between;
    align-items: center;
    border-color: #0089AE;
    transition: 0.5s;
}
.switch-holder:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  transition: 0.5s;
}

.switch-label {
    width: 150px;
}

.switch-label i {
    margin-right: 5px;
}

.switch-toggle {
    height: 40px;
}

.switch-toggle input[type="radio"] {
    position: absolute;
    opacity: 0;
    z-index: -2;
}

.switch-toggle input[type="radio"] + label {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 40px;
    border-radius: 20px;
    margin: 0;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    
}

.switch-toggle input[type="radio"] + label::before {
    position: absolute;
    content: 'NO';
    font-size: 13px;
    font-weight:600;
    color:#fff;
    text-align: center;
    line-height: 25px;
    top: 8px;
    left: 8px;
    width: 45px;
    height: 25px;
    border-radius: 20px;
    background-color: #00C398;
    transition: .3s ease-in-out;
}

.switch-toggle input[type="radio"]:checked + label::before {
    left: 50%;
    content: 'YES';
    color: #fff;
    font-weight:600;
    background-color: #0089AE;
}

/* for checkbox */
.switch-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  z-index: -2;
}

.switch-toggle input[type="checkbox"] + label {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 40px;
  border-radius: 20px;
  margin: 0;
  cursor: pointer;
  box-shadow: rgb(0 0 0 / 10%) 0px 10px 15px -3px, rgb(0 0 0 / 5%) 0px 4px 6px -2px;
  
}

.switch-toggle input[type="checkbox"] + label::before {
  position: absolute;
  content: 'NO';
  font-size: 13px;
  font-weight:600;
  color:#fff;
  text-align: center;
  line-height: 25px;
  top: 8px;
  left: 8px;
  width: 45px;
  height: 25px;
  border-radius: 20px;
  background-color: #00C398;
  transition: .3s ease-in-out;
}

.switch-toggle input[type="checkbox"]:checked + label::before {
  left: 50%;
  content: 'YES';
  color: #fff;
  font-weight:600;
  background-color: #0089AE;
}


.cost {
    padding-top: 20px;
    padding-bottom: 20px;
}
.price{
    display: inline;
    padding: 10px 30px;
    border-radius: 10px;
    box-shadow: -0.5px -0.5px 0px #000000, 5px 5px 5px #0e191c, inset 4px 4px 7px #000000, inset 5px 5px 5px #000000;
    align-items: center;
    margin-bottom: 100px;
    color:#005180;
}
input {
        display: inline;
        padding: 13px 30px;
        margin-left: 15px;
        border-radius: 10px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
        border: none;
        align-items: center;
        color:#000;
}

.submit{
    display: inline;
        padding: 20px 30px;
        border-radius: 50px;
        border: none;
        align-items: center;
        background-color: #00789F;
        color:#fff;
        justify-content: center;
}
.submit:hover{
    cursor:pointer;
    background-color: #0089AE;
}
.col {
    flex: 50%;
    padding: 10px;
    overflow: hidden;
  }
  .submit-div{
    text-align: center;
  }
  h1{
    text-align: center;
    font-weight: 100;
    font-size: 50px;
  }
  h1&gt; span {
    color:#005180;
  }</pre></body></html>