
.quick-form{
    border-radius: 24px;
    border: 1px solid #e6e6e6;
    background: #f6f7fb;
    padding: 20px;
    max-width: 400px;
    margin-left: auto;
    position: relative;
}
.quick-form label{
    display: none;
}

.quick-form form input{
    border-radius: 20px;
    border: 1px solid #0c2053;
    padding: 10px 16px;
    transition: 0.3s;
    font-size: 14px;
    min-height: 44px;
}
.quick-form form select{
    border-radius: 20px;
    border: 1px solid #0c2053;
    padding: 10px 38px 10px 16px;
    transition: 0.3s;
    font-size: 14px;
    min-height: 44px;
    text-overflow: ellipsis;
}
.quick-form form textarea{
    border-radius: 20px;
    border: 1px solid #0c2053;
    padding: 10px 15px;
    transition: 0.3s;
    font-size: 14px;
}

.quick-form form input::placeholder,
.quick-form form textarea::placeholder {
    color: #3e4858;
    opacity: 1;
}

.quick-form .order-form .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}
.quick-form form .invalid-feedback{
   display: none !important;
}

.quick-form .alert-success {
    position: absolute;
    top: -26px;
    padding: 5px;
    border-radius: 0;
    font-size: 14px;
    left: 50%;
    transform: translate(-50%);
    width: 78%;
    border-radius: 20px;
    background: green;
    color: #fff;
    border: none;

}

.order-section {
    /* background: #f8f9fc; */
    /* min-height: 80vh; */
    width: 60%;
    margin: auto;
    padding: 60px 0px;
}
.order-section form input{
    border-radius: 20px;
    border: 1px solid #0c2053;
    padding: 10px 15px;
    transition: 0.3s;
}
.order-section form select{
    border-radius: 20px;
    border: 1px solid #0c2053;
    padding: 10px 15px;
    transition: 0.3s;
}
.order-section form textarea{
    border-radius: 20px;
    border: 1px solid #0c2053;
    padding: 10px 15px;
    transition: 0.3s;
}
.order-section h2 {
    font-size: 36px;
    font-weight: 700;
}

.order-form .form-label {
    font-weight: 500;
}

.order-form .btn-gradient {
    background: linear-gradient(91deg, #0d224acc, #f4ba18);
    color: #fff;
    border-radius: 50px;
    padding: 12px 31px;
    font-size: 16px;
    transition: 0.4s;
    /* display: flex; */
}

.order-form .btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(13,34,74,0.3);
}

/* Animate input focus */
.order-form .form-control:focus {
    border-color: #f4ba18;
    box-shadow: 0 0 8px rgba(244,186,24,0.4);
}

/* Validation styles */
.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: #dc3545;
}

/* Success alert */
.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-radius: 10px;
}
