::-webkit-scrollbar {
    width: 8px;
    }
    /* Track */
    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }
    /* Handle */
    ::-webkit-scrollbar-thumb {
      background: #888;
    }
    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
      background: #ffffff;
    }
    .container-fluid{
      background-color: #ffffff}
    .heading{
      font-size: 40px;
      margin-top: 35px;
      margin-bottom: 30px;
      padding-left: 20px}
    .card{
      border-radius: 10px !important;
      margin-top: 60px;
      margin-bottom: 60px}
    .form-card{
      margin-left: 20px;
      margin-right: 20px}
    .form-card input, .form-card textarea{
      padding: 10px 15px 5px 15px;
      border: none;
      border: 1px solid lightgrey;
      border-radius: 6px;
      margin-bottom: 25px;
      margin-top: 2px;
      width: 100%;
      box-sizing: border-box;
      font-family: arial;
      color: #2C3E50;
      font-size: 14px;
      letter-spacing: 1px}
    .form-card input:focus, .form-card textarea:focus{
      -moz-box-shadow: 0px 0px 0px 1.5px skyblue !important;
      -webkit-box-shadow: 0px 0px 0px 1.5px skyblue !important;
      box-shadow: 0px 0px 0px 1.5px skyblue !important;
      font-weight: bold;
      border: 1px solid #304FFE;
      outline-width: 0}
    .input-group{
      position:relative;
      width:100%;
      overflow:hidden}
    .input-group input{
      position:relative;
      height:80px;
      margin-left: 1px;
      margin-right: 1px;
      border-radius:6px;
      padding-top: 30px;
      padding-left: 25px}
    .input-group label{
      position:absolute;
      height: 24px;
      background: none;
      border-radius: 6px;
      line-height: 48px;
      font-size: 15px;
      color: gray;
      width:100%;
      font-weight:100;
      padding-left: 25px}
    input:focus + label{
      color: #304FFE}
    .btn-pay{
      background-color: #304FFE;
      height: 60px;
      color: #ffffff !important;
      font-weight: bold}
    .btn-pay:hover{
      background-color: #3F51B5}
    .fit-image{
      width: 100%;
      object-fit: cover}
    img{
      border-radius: 5px}
    .radio-group{
      position: relative;
      margin-bottom: 25px}
    .radio{
      display:inline-block;
      border-radius: 6px;
      box-sizing: border-box;
      border: 2px solid lightgrey;
      cursor:pointer;
      margin: 12px 25px 12px 0px}
    .radio:hover{
      box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2)}
    .radio.selected{
      box-shadow: 0px 0px 0px 1px rgba(0, 0, 155, 0.4);
      border: 2px solid blue}
    .label-radio{
      font-weight: bold;
      color: #000000}
  
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      margin: 0;
      padding: 0;
    }
    .main-container {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }
    .main-container h2 {
      margin: 0 0 80px 0;
      color: #000000;
      font-size: 30px;
      font-family: "Raleway", sans-serif;
      font-weight: 400;
    }
    .radio-buttons {
      width: 100%;
      margin: 0 auto;
      text-align: center;
    }
    .custom-radio input {
      display: none;
    }
    .radio-btn {
      margin: 10px;
      width: 180px;
      height: 200px;
      border: 3px solid transparent;
      display: inline-block;
      border-radius: 10px;
      position: relative;
      text-align: center;
      box-shadow: 0 0 20px #c3c3c367;
      cursor: pointer;
    }
    .radio-btn > i {
      color: #ffffff;
      background-color: #304FFE;
      font-size: 20px;
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%) scale(4);
      border-radius: 50px;
      padding: 3px;
      transition: 0.2s;
      pointer-events: none;
      opacity: 0;
    }
    .radio-btn .hobbies-icon {
      width: 80px;
      height: 80px;
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    .radio-btn .hobbies-icon i {
      color: #304FFE;
      line-height: 80px;
      font-size: 60px;
    }
    .radio-btn .hobbies-icon h3 {
      color: #000000;
      font-size: 16px;
      font-weight: bold;
    }
    .custom-radio input:checked + .radio-btn {
      border: 3px solid #304FFE;
    }
    .custom-radio input:checked + .radio-btn > i {
      opacity: 1;
      transform: translateX(-50%) scale(1);
    }
  