

.form-input.textarea {
    width: 100%;
    height: 200px !important;
    padding:1rem;
}

textarea::placeholder {
    text-align: left;     /* default anyway */
    vertical-align: top;  /* has no effect on placeholder */
    position: absolute;   /* force to top-left */
    /* top: 12px;             adjust as needed */
    /* left: 20px; */
}

.form-input, .form-select {
    background-color: #f4f4f4 !important;
    height: 56px;
    border-radius: 16px !important;
}

.form-input:focus .form-select:focus{
    border: 2px solid #066aab !important;
}

.form-label{
    font-weight: 700;
    color: #000;
}

.select-option {
    line-height: 1.5;
    font-weight: 400;
    font-size: 17px;
    padding: 4px 0 0 12px;
    color: #000;
}

.checkbox-item {
    display: flex;
    align-items: baseline;
}

.checkbox-group {
    display:flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    align-content: flex-start;
    flex-wrap: wrap;
}

.submit-button {
    background-color: #a0302f !important;
    color: #fff;
    border: 1px solid transparent;
    height: 56px;
    border-radius: 16px !important;
     transition: all 0.3s ease; /* Smooth transition */

}

.submit-button:hover {
    background-color: #820600 !important;
    color: #fff;
    transform: translateY(-5px); /* Move up 5px on hover */
    box-shadow: 0 5px 15px rgba(130, 17, 12, 0.3); /* Optional shadow effect */
}



/* select2js css*/



.form-input, .form-select, .select2-container .select2-selection--single {
    background-color: #f4f4f4 !important;
    height: 56px !important;
    border-radius: 16px !important;
}

.form-input:focus, .form-select:focus, 
.select2-container--focus .select2-selection--single,
.select2-container--open .select2-selection--single {
    border: 2px solid #066aab !important;
    outline: none !important;
}

/* Additional styling for Select2 elements */
.select2-container .select2-selection--single {
    border: 1px solid #ced4da !important;
    padding: 0.5rem 0.75rem !important;
    display: flex !important;
    align-items: center !important;
}

.select2-container .select2-selection--single .select2-selection__arrow {
    height: 54px !important;
    right: 10px !important;
}

.select2-selection__clear{
    display: none !important;
}











/* test */

/* Floating label wrapper */
.floating-label {
    position: relative;

}


.floating-label .form-label {
    position: absolute;
    top: 20px;
    left: 12px;
    padding: 0 4px;
    font-size: 16px;
    color: #444;
    font-weight: 600;
    transition: 0.2s ease all;
    pointer-events: none;
}

.floating-label .form-input:focus + .form-label,
.floating-label .form-input:not(:placeholder-shown) + .form-label {
    top: 8px;
    left: 12.5px;
    font-size: 11px;
    color: #333;
}


.floating-label .form-input::placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* On focus, fade the placeholder in */
.floating-label .form-input:focus::placeholder {
    opacity: 1;
}
/* Float the label when input is focused or filled */
.form-container .form-input-text:focus + .form-label-text,
.form-container .form-input-text:not(:placeholder-shown) + .form-label-text {
    top: 2px;
    left: 8px;
    font-size: 11px;
    color: #333;
}





/* addid sept 12 */
.select2-container--default .select2-selection--single {
    border: 1px solid #666666 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #444444 !important;
    font-weight: 600;
}
