.nav-pills .nav-link {
    border: 1px solid #323537;
    border-radius: 0.5rem;
    text-align: left;
    padding: 1rem;
    color: #212529;
    position: relative;
    transition: all 0.3s ease;
}
.nav-pills .nav-link.active {
    background: rgba(13, 110, 253, 0.1);
    border: 2px solid #0059A3;
}

.nav-pills .nav-link.active  h4{
    color: #0059A3;
}

.nav-pills .nav-link  h4{
    color: #323537;
}

.nav-pills .nav-link .checkmark {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #dee2e6;
    background: #fff;
}
.nav-pills .nav-link.active .checkmark {
    background: #0059A3;
    border-color: #0059A3;
}
.tab-content .tab-pane {
    padding: 1.5rem;
    margin-top: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
}

.passport-upload {
    width: 140px;
    height: 150px;
    border: 2px dashed #dee2e6;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f8f9fa;
    cursor: pointer;
    position: relative;
}

.passport-upload img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.passport-upload .plus {
    font-size: 15px;
    color: #6c757d;
}

.passport-upload input[type="file"] {
    display: none;
    position: absolute;
    inset: 0;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 10.5px .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    text-align: center;
    white-space: nowrap;
    background-color: var(--bs-tertiary-bg);
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: 30px;
}