.frm_desk {
    width: 100%;
}

.frm_desk_title {
    width: 100%;
    font-weight: 700;
    font-size: 30px !important;
    color: chocolate;
}

.frm_desk_content {
    width: 100%;
    font-size: 16px;
    margin-top: 10px;
}

.frm_desk_file {
    font-size: 20px;
    width: 100%;
    margin: 30px 0 60px 0;
    color: blue;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.frm_desk_file span {
    font-weight: 700 !important;
    font-size: 1em !important;

}


.frm_desk_file span {
    font-size: 12px;
    color: rgb(22, 149, 223);
}

.frm_desk_step {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}


.frm-upload-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.frm-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.frm-btn:disabled {
    background-color: #ccc;
    color: #999;
    border-color: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    opacity: 0.7;
}

.btn-select {
    background-color: transparent;
    color: #FF8C00;
    border: 2px solid #FF8C00;

}

.btn-select:hover {
    background-color: #FFF5E6;
    border-color: #E67E00;
    color: #E67E00;
}

.btn-submit {
    background-color: #FF8C00;
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 6px rgba(255, 140, 0, 0.2);
}

.btn-submit:hover {
    background-color: #E67E00;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(255, 140, 0, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}


.frm-msg {
    position: fixed;
    top: 200px;
    left: 0;
    right: 0;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    opacity: 0;
    z-index: 10;
    width: 80%;
    margin: 0 10%;
    z-index: 99999999999999999999
}

.frm-msg.show {
    transform: translateY(0);
    opacity: 1;
}

.msg-success {
    background-color: #e3f2fd !important;
    color: #0d47a1 !important;
    border-bottom: 1px solid #bbdefb;
}

.msg-error {
    background-color: #fdecea !important;
    color: #d32f2f !important;
    border-bottom: 1px solid #f5c6cb;
}

.frm_desk_select_opt {
    width: 90%;
    padding: 0 5%;
    border-radius: 5px;
    border: 3px solid #FF8C00;
    height:100px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}