<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.form-container {
    background: white;
    border-radius: 10px;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-container form {
    padding: 20px;
}

.form-section {
    display: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.form-section.active {
    display: block;
    opacity: 1;
}

.progress {
    margin-bottom: 20px;
    height: 5px !important;
}

.nav-pills {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.nav-pills .nav-link.active {
    color: #6c757d !important;
    background: transparent !important;
}

.nav-link {
    color: #ddd !important;
    background: transparent;
    border: none;
    font-size: 22px;
    font-weight: 500;
}

.nav-item {
    flex: 1;
    text-align: center;
}

.step-icon {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background: #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    margin-right: 10px;
}

.nav-link.active .step-icon {
    background: #0095ff;
    color: white;
}

.progress-bar {
    background: #0095ff !important;
    transition: width .6s ease;
}

.user-country,
.number_of_documents_to_be_apostillized,
.document-type,
.document-service,
.apostille-fields input {
    height: 60px;
    border: 1px solid #efefef;
    border-radius: 15px;
    background: #efefef;
}

#additional-info {
    border: none;
    border-radius: 15px;
    background: #efefef;
}

#nextBtn,
#submitBtn,
#backBtn {
    height: 70px;
    padding: 0 40px;
    border: none;
    border-radius: 15px;
    font-size: 20px;
}

.user-country:focus,
.number_of_documents_to_be_apostillized:focus,
.document-type:focus,
.document-service:focus {
    outline: none;
    box-shadow: none;
    background: #efefef;
}

.buttons {
    text-align: center;
    margin-top: 30px;
}

.btn-secondary {
    color: #000;
    background: #efefef;
}

.apostille-check-wrapper {
    display: flex;
    align-items: center;
}

.apostille-check-box {
    margin-right: 15px;
}

.apostille-check-box input[type="radio"] {
    appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #007bff;
    border-radius: 5px;
    position: relative;
}

.apostille-check-box input[type="radio"]:checked {
    background: #fff;
}

.apostille-check-box input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    width: 18px;
    height: 18px;
    background: #007bff;
    border-radius: 5px;
}

.file-upload {
    border: none;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
    background: #efefef;
}

.file-upload:hover {
    background: #efefef;
}

.drop-zone {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #6c757d;
    flex-direction: column;
}

.drop-zone.dragover {
    border-color: #0056b3;
    background: #e9ecef;
}

.form-container label {
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500 !important;
    padding-bottom: 5px;

}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .nav-link {
        font-size: 18px;
        /* Smaller font size */
    }

    #nextBtn,
    #submitBtn,
    #backBtn {
        padding: 0px 30px;
        /* Smaller padding */
        font-size: 18px;
        /* Smaller button text */
        height: 50px;
    }

    .form-section {
        padding: 10px;
        /* Less padding for sections */
    }

    .step-icon {
        width: 25px;
        /* Smaller step icon */
        height: 25px;
    }
}

@media (max-width: 768px) {
    .form-container {
        padding: 10px;
        /* Less padding for the form container */
    }

    .form-container form {
        padding: 0px;
    }

    .user-country,
    .number_of_documents_to_be_apostillized,
    .document-type,
    .document-service,
    .apostille-fields input {
        height: 50px;
        /* Adjust height for inputs */
        font-size: 16px;
        /* Adjust font size for inputs */
        margin-bottom: 10px;
    }

    .drop-zone {
        height: 150px;
        /* Adjust height for drop zone */
    }

    .progress {
        margin-bottom: 10px;
        /* Less margin for progress bar */
    }

    .buttons {
        margin-top: 20px;
        /* Less margin for buttons */
    }

    .nav-link {
        font-size: 9px;
        /* Smaller font size */
    }

    .form-container label {
        font-size: 18px;
    }
}

#order_form{
    padding: 0px 50px 0px 50px;
}</pre></body></html>