/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 30 2025 | 06:04:18 */
#registrationForm {
    background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 700px;
  margin: auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-top: 6px solid #36348E;
  font-family: "Segoe UI", sans-serif;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  button#openFormBtnDesktop {
    animation: jugmugJugmug .3s infinite;
	  transition: all .3s ease-in-out;
}
button#openFormBtnDesktop:hover{
	color: #fff;
}
@keyframes jugmugJugmug{
	0%{
		background: #36348E;
	}
	50%{
		background: #FFC53A;
	}
	100%{
		background: #36348E;
	}
}
  #registrationForm:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(54, 52, 142, 0.4);
}

  #registrationForm label {
    font-weight: 600;
    color: #36348E;
    display: block;
    margin-bottom: 8px;
  }

  #registrationForm input[type="text"],
  #registrationForm input[type="email"],
  #registrationForm input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: 0.3s ease;
    font-size: 15px;
  }

  #registrationForm input:focus {
    outline: none;
    border-color: #36348E;
    box-shadow: 0 0 0 3px rgba(54, 52, 142, 0.2);
  }

  .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }

  .form-group {
    flex: 1 1 45%;
  }

  .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
  }

  .checkbox-group label {
    background: #f9f9fb;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    transition: 0.3s;
    cursor: pointer;
  }

  .checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
  }

  .checkbox-group label:hover {
    background-color: #FFB80D;
    color: #fff;
    border-color: #FFB80D;
  }

  #registrationForm button {
    width: 100%;
    padding: 12px;
    background-color: #ffb80d;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: 0.3s;
  }

  #registrationForm button:hover {
    background-color: #2a277a;
    cursor: pointer;
  }

  @media (max-width: 600px) {
    .form-row {
      flex-direction: column;
    }

    .form-group {
      flex: 1 1 100%;
    }

    .checkbox-group label {
      flex: 1 1 100%;
    }
  }
     .checkbox-group {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      margin-top: 10px;
      font-family: Arial, sans-serif;
    }

    .checkbox-group label {
      display: block;
      border: 1px solid #eaeaea;
      padding: 10px;
      border-radius: 5px;
      /*background-color: #f9f9f9;*/
    }

    .checkbox-group strong {
      display: inline;
      /*margin-bottom: 5px;*/
      font-size: 14px;
    }

    .checkbox-group small {
      color: #555;
      font-size: 12px;
    }

#openFormBtn {
     
      font-size: 16px;
      background-color: #28a745;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
       padding: 12px 20px;
       cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    }

    #openFormBtn:hover {
      background-color: #FFB80D;
    }
    
    #openFormBtn i {
    animation: flyLoop 1.5s infinite ease-in-out;
    display: inline-block;
  }

  /* On hover: change icon animation */
  #openFormBtn:hover i {
    animation: spinHover 0.8s infinite linear;
  }

  /* Continuous flying animation */
  @keyframes flyLoop {
    0%   { transform: translateX(0) rotate(0deg); }
    50%  { transform: translateX(6px) rotate(10deg); }
    100% { transform: translateX(0) rotate(0deg); }
  }

  /* Spin on hover */
  @keyframes spinHover {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
    
    /* Modal Overlay */
    .modal-overlay {
      position: fixed;
      top: 32px;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      /* justify-content: center; */
      align-items: center;
      z-index: 1000;
      height: 100vh;
      overflow: scroll;
    }

    /* Modal Content */
    .modal-content {
      background: #fff;
      padding: 30px 40px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      width: 90%;
      max-width: 700px;
      position: relative;
	  margin-inline: auto;
    }

    /* Close Button */
    .close-btn {
     position: absolute;
    top: 0px;
    right: 10px;
    font-size: 40px;
    color: #888;
    cursor: pointer;
    }

    .close-btn:hover {
      color: #000;
    }


.form-header {
  text-align: center;
  margin-bottom: 30px;
  background: linear-gradient(to right, #FFB80D, #ffe7b8);
  padding: 15px 20px;
  border: 2px solid #FFB80D;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(255, 184, 13, 0.3);
  position: relative;
}

.form-header h2 {
  margin: 0;
  font-size: 28px;
  font-weight: bold;
  color: #36348E;
  font-family: "Segoe UI", sans-serif;
  text-align: center;
    padding-bottom: 10px;
}

.form-header::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: #36348E;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}


/* Hide on desktop, show on mobile/tablet */
.mobile-only {
  display: none;
  padding: 12px 24px;
  font-size: 16px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin: 20px auto;
  width: fit-content;
}

/* .fixedapplyform.mobilebotap {
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    content: "";
    transform: rotate(90deg) translate(50vh, -70px); */
}

@media (min-width: 767px) {
	.mobilebotap{
		display: none;
	}
}
@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
button#openFormBtn {
    display: block !important;
}
}
@media (max-width: 767px) {
	    .headerbotap {
        position: fixed;
        right: 1px;
        top: 0;
        transform: rotate(90deg) translate(41vh, 0px);
        height: 20vh;
}
	    .modal-overlay {
      position: fixed;
      top: 0px;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      /* justify-content: center; */
      align-items: center;
      z-index: 10002222222222;
      height: 100vh;
      overflow: scroll;
    }
	.modal-content {
		width: 100%;
	}

}

button#openFormBtnDesktop {
    letter-spacing: 0;
}




.swal2-popup {
  font-family: "DM Sans", Sans-serif !important; /* or any font you like */
}

#loader-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}
.loader {
    width: 80px;
    height: 80px;
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-top: 8px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
	0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}