/* Body styling */
body {
    background: #f4f6ff !important;
/*     background: linear-gradient(135deg, #49C5F6, #a279f3) !important; */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

/* Form container styling */
/* .form-container {
    background: linear-gradient(135deg, #49C5F6, #FF2AEF) !important;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    margin-top: 50px;
    color: #fff; 
} */



/* 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 linear-gradient(135deg, #49C5F6, #a279f3); 
    border-radius: 0;
    padding: 10px;
    width: 100%;
    color: #fff;
    font-size: 16px;
    box-shadow: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;

} */
 .form-control {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent; /* Set the border to transparent */
    background-image: linear-gradient(135deg, #49C5F6, #a279f3); /* 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;
}
/* 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; */
}

.radio .highlight {
    background: #ffffff !important;  /* Matches the green tone of the gradient */
    border-radius: 8px;
}

.radio .td:hover {
    background: #ffffff !important;  /* Same as highlight for consistency */
    cursor: url(../../assets/images/LinkSelect.cur), auto;
    border-radius: 8px;
}


.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);
}
.form-control:focus{
    box-shadow: none !important;
}
.form-control:active {
 
    outline: none !important;

}
.invalid-feedback{

}
.form-control.is-invalid, .was-validated .form-control:invalid{
    
}

.form-control.is-valid, .was-validated .form-control:valid{
   
    border-color:  #82d7af !important;
}
.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;
}

/* Required info styling */
.required-info {
    color: #ff073a; /* Bright red */
    font-size: 12px;
}

/* Neon button styling */
/* Button styling */
.btn {
    background: linear-gradient(135deg, #49C5F6, #a279f3);
    color: #f4f6ff;
    border: none;
    border-radius: 6px;
    padding: 10px 15px;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Button hover effect */
.btn:hover {
    background-color: #0056b3;
}

/* Step indicator styling with neon effect */

/* Media Query for Mobile */
@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }
}
