    .service_box.active, .service_box.active:hover{
        border: 2px solid rgb(20 201 87);
    }
    .service_box{
        cursor: pointer;
    }
    .input-error {
        border: 1px solid red !important;
    }

    .error-text {
        color: red;
        font-size: 13px;
        margin-top: 4px;
    }
/* Red border */
.input-error {
    border: 1px solid #ff3b3b !important;
}

/* Red glow highlight */
.input-error {
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.3);
}

/* Shake animation for incorrect field */
@keyframes shake {
    0% { transform: translateX(0px); }
    20% { transform: translateX(-5px); }
    40% { transform: translateX(5px); }
    60% { transform: translateX(-5px); }
    80% { transform: translateX(5px); }
    100% { transform: translateX(0px); }
}

.shake {
    animation: shake 0.4s ease-in-out;
}

/* Error text */
.error-text {
    color: red;
    margin-top: 4px;
    font-size: 13px;
}
#uploadArea {
    border: 2px dashed #b5b5b5;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
}

#uploadArea.dragover {
    border-color: #4a67ff;
    background: #eef1ff;
}

#file_preview_list {
    margin-top: 10px;
    padding-left: 0;
}

#file_preview_list li {
    list-style: none;
    background: #f7f7f7;
    padding: 8px 12px;
    margin-bottom: 6px;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#file_preview_list li span.remove_file {
    color: red;
    cursor: pointer;
    font-size: 13px;
}

.file_review_item {
    padding: 6px 10px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.file_review_item i {
    color: #555;
}

.no_files {
    color: #888;
    font-style: italic;
}

.login_prompt_box {
    text-align: center;
    padding: 40px 20px;
}

.login_icon_circle {
    width: 80px;
    height: 80px;
    background: #d8ffca;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #2d7a28;
}

.login_title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.login_subtitle {
    color: #444;
    font-size: 15px;
    margin-bottom: 10px;
}

.login_success_text {
    color: #2a8e1a;
    margin-bottom: 25px;
    font-weight: 500;
}

.google_login_btn {
    display: block;
    background: #0c3a1d;
    color: #fff;
    padding: 14px 22px;
    border-radius: 6px;
    font-size: 16px;
    text-align: center;
    max-width: 380px;
    margin: 0 auto 20px;
    font-weight: 600;
    transition: 0.2s;
}

.google_login_btn:hover {
    background: #0a3018;
}

.login_bottom_text {
    margin: 10px 0 25px;
    color: #666;
}

.login_bottom_text span {
    font-weight: 600;
}

.login_info_box {
    background: #eef6ff;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    font-size: 14px;
}

.login_info_box ul {
    padding-left: 50px;
    margin-top: 10px;
    color: #dd6f6f;
}

.login_info_box li {
    margin-bottom: 5px;
}
