/* LightSolver Apply Form Styles */

#lightsolver-apply-form {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

#lightsolver-apply-form .input-wrapper{
    flex-basis: calc(50% - 15px);
}

#lightsolver-apply-form .input-wrapper.message-wrapper, 
#lightsolver-apply-form .error-handle,
#lightsolver-apply-form .g-recaptcha {
    flex-basis: 100%;
}

#lightsolver-apply-form input,
#lightsolver-apply-form textarea {
   background-color: rgba(255, 255, 255, 0.9);
    color: #08243a;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 15px 28px;
    width: calc(100% - 56px);
    border-radius: 0;
    box-sizing: content-box;
    border: 0;
}
#lightsolver-apply-form .input-error{
    box-shadow: 0px 0px 7px 3px #ff0000;
}
.submit-wrapper{
    flex-basis: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    flex-basis: 100%;
}
.submit-wrapper .loader {
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #2d72d9;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#lightsolver-apply-form button[type="submit"] {
    border-radius: 10px;
    background: #4568f6;
    padding: 14px 53px;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    
}

#lightsolver-apply-form button[type="submit"]:hover {
    color: #b2efed;
    background-color: #b2efed00;
    border-color: #b2efed;
}

#lightsolver-apply-form .error-handle {
  color: #d32f2f;
  font-size: 0.95em;
  margin-bottom: 0.5em;
}

#lightsolver-apply-response {
  margin-top: 1em;
  font-size: 1em;
  color: #388e3c;
}

@media screen and (max-width: 768px) {
    #lightsolver-apply-form .input-wrapper {
        flex-basis: 100%;
    }
    .submit-wrapper{
        justify-content: center;
    }
}