.progress-container {
    margin: 30px 0;
    width: 100%;
    position: relative;
}

.progress-bar-custom {
    height: 4px;
    background-color: #B7D1FF;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
}

.progress-step {
    width: 106%;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.step {
    text-align: center;
    position: relative;
    width: 10% !important;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 2px;
    background-color: #B7D1FF;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: auto; */
    position: relative;
    z-index: 2;
}

.step.active .step-circle {
    background-color: #3c81fa;
    color: white;
}

.step-title {
    text-align: start;
    font-size: 0.8rem;
    color: #6c757d;
    white-space: nowrap;
}

.step.active .step-title {
    color: #377FFE;
    font-weight: 600;
}

.form-bg {
    /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.05); */
    background-color: white;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    padding: 50px;

    @media (max-width: 768px) {
        padding: 20px;
    }
}

.checkbox-lebel-color {
    color: #6c757d;
}

/* Make checkbox accent gray instead of blue */
.form-check-input {
    accent-color: #6c757d;
}

.form-container {
    /* padding: 30px; */
    margin-bottom: 50px;
    height: 100% !important;
    max-width: 760px; /* constrain inner content width */
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .form-container {
        max-width: 720px;
    }
}

@media (max-width: 768px) {
    .form-container {
        max-width: 100%;
    }
}

.form-header {
    color: #0a2c5c;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #377FFE;
    border: none;
    padding: 10px 25px;
}

.btn-outline-secondary {
    border-color: #377FFE;
    color: #377FFE;
    padding: 10px 25px;
}

.file-upload-label {
    display: block;
    position: relative;
    border: 2px dashed #d3d3d3;
    border-radius: 5px;
    padding: 20px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.file-upload-label:hover {
    border-color: #377FFE;
}

.file-upload-input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-icon {
    font-size: 2rem;
    color: #6c757d;
    margin-bottom: 10px;
}

[id^="step-"] {
    display: none;
}

#step-1 {
    display: block;
}

.progress-bar {
    background-color: #377FFE;
}

.btn-primary {
    background-color: #377FFE;
    border-color: #377FFE;
}

.step-number {
    color: #012152;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 85%;
    height: auto;
    margin: 0;
}

.dot-color {
    color: #1c4894;
    font-size: 72px;
}