/* Body styling */
body {

    background: #f5fdf5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}
#myframe{
    background: linear-gradient(135deg, #16A085, #F4D03F) !important;
}
/* Form container styling */
/* .container {

    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    margin-top: 50px;
    color: #fff; 
}
 */

 /* new css */
 /* .form-control.is-valid, .was-validated, .form-control:valid, .form-select.is-valid, .form-control:hover, .form-control:focus {
    border-color: #0A3464;
 } */


/* Neon title styling */
.form-title {
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff; /* Neon green */
    text-align: center;
    font-size: 28px;
    
}


/* Input field styling with neon underline effect */
.form-control {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent; /* Set the border to transparent */
    background-image: linear-gradient(135deg, #16A085, #F4D03F); /* Gradient background */
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% 2px; /* Adjust the size to match the border thickness */
    
    border-radius: 0;
    padding: 10px;
    width: 100%;
    font-size: 16px;
    box-shadow: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wskCheckbox{
    background: #fff !important;
}

.wskCheckbox.checked{
    border-left: 3px solid #000;
  border-bottom: 5px solid #000;
  background: transparent;
  border-top: 1px solid rgba(0,0,0,0);
  border-right: 1px solid rgba(0,0,0,0);
  -webkit-transform: rotate(-45deg) scaleY(0.5);
  -moz-transform: rotate(-45deg) scaleY(0.5);
  -ms-transform: rotate(-45deg) scaleY(0.5);
  -o-transform: rotate(-45deg) scaleY(0.5);
  transform: rotate(-45deg) scaleY(0.5);
}

.custom-select-container .custom-select-selected{
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent; /* Set the border to transparent */
    background-image: linear-gradient(135deg, #16A085, #F4D03F); /* Gradient background */
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% 2px; /* Adjust the size to match the border thickness */

    border-radius: 0;
    padding: 10px;
    width: 100%;
    font-size: 16px;
    box-shadow: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .custom-select-container .custom-select-selected:hover, .custom-select-container .custom-select-selected:focus{

    outline: none;

  }

/* Neon hover and focus effects */
.form-control:hover,
.form-control:focus {
    border-bottom-color: #00eaff; /* Light blue neon on focus */
    outline: none;
    /* box-shadow: 0 0 8px #00eaff; */
}
.form-control:focus + label {
    color: black;
}

.form-control:focus{
    box-shadow: none !important;
}
.form-control:active {
 
    outline: none !important;

}
.radio .highlight {
    background: #b4c253 !important;  /* Matches the green tone of the gradient */
    border-radius: 8px;
}

.radio .td:hover {
    background: #b4c253 !important;  /* Same as highlight for consistency */
    cursor: url(../../assets/images/LinkSelect.cur), auto;
    border-radius: 8px;
}

.invalid-feedback{
   
}
.form-control.is-invalid, .was-validated .form-control:invalid{

}
.form-check-input.is-invalid ~ .form-check-label, .was-validated .form-check-input:invalid ~ .form-check-label{

}
/* Neon placeholder text */
.form-control::placeholder {
    color: #ffffff;
}
.was-validated .form-select:invalid{
   
}
/* Neon placeholder text */
.form-control::placeholder {
    color: #ffffff;
}

/* Required info styling */
.required-info {
    color: #ff073a; /* Bright red */
    font-size: 12px;
}

/* Neon button styling */
/* Button styling */
.btn {
    background-color: #12896e;
    color: #c6d8df;
    border: none;
    border-radius: 6px;
    padding: 10px 15px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn.btn-sm.btn-default.clockpicker-button.am-button {
    width: unset !important;
  }
  .btn.btn-sm.btn-default.clockpicker-button.pm-button {
  
    width: unset !important;
  }

  .form-control.is-valid, .was-validated .form-control:valid{

    

  }


  /*  */

  .sub
  .was-validated .form-check-input:valid ~ .form-check-label{

  }

/* Button hover effect */   
.btn:hover {
    background-color: #169A85;
}



#Privacy_Policy.form-check-input:checked + label {

}
#Privacy_Policy.form-check-input:checked {
    background-color: #169A85;
    border-color: #169A85;
  }



/* Media Query for Mobile */
@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }
}
