/* --------------------------------- The below CSS is used for Support Request Form ---------------------------------------------------*/



.custom-support-form-wrapper {
    background: #FFF;
    padding: 30px;
    border-radius: 10px;
    font-family: Roboto;
}

.custom-support-form-wrapper h3 {
    margin-bottom: 5px;
    font-size: 20px;
    color: #242424;
    font-weight: 700;
}

.custom-support-form-wrapper p {
    font-size: 16px;
    color: #242424;
    margin-bottom: 20px;
}

.custom-support-form .form-group {
    margin-bottom: 20px;
    font-size: 16px;
    color: #000039;
    font-weight: 700;
}

.custom-support-form input[type="text"],
.custom-support-form select,
.custom-support-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.custom-support-form textarea {
    resize: vertical;
}

.custom-support-form .form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.custom-support-form .half-width {
    flex: 1;
    min-width: 250px;
}

.custom-support-form .submit-btn {
    background-color: #3f51b5;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.custom-support-form .submit-btn:hover {
    background-color: #2f3fa0;
}

.file-upload-label {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #000039;
    margin-bottom: 5px;
}

.custom-file-box {
    width: 100%;
    padding: 10px;
    border: 1px solid #aaa;
    border-radius: 6px;
    background-color: #eef0ff;
    color: #999;
    font-size: 12px;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-hidden-input {
    display: none;
}




/* --------------------------------- The above CSS is used for Support Request Form ---------------------------------------------------*/