input::placeholder {
    text-align: left !important;
}

.bold {
    font-weight: bold !important;
}

.underline {
    text-decoration: underline !important;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.pdt-5 {
    padding-top: 5px;
}

.pdt-10 {
    padding-top: 10px !important;
}

.pd-15 {
    padding: 15px;
}

.pd-18 {
    padding: 18px;
}

.pd-30 {
    padding: 30px;
}

.card-box {
    padding: 10px 0px;
    margin-top: 20px;
}

.title-form-inp .the-title {
    padding: 15px;
    border-bottom: 1px solid #dddddd;
}

.navbar-nav {
    float: none;
}

label.tab_2 {
    color: #222222 !important;
}

.text-align-center {
    text-align: center;
}

.certificate_number_error {
    padding-top: 5px;
    color: red;
}

input::placeholder {
    text-align: center;
}

.steps-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.step-item {
    display: flex;
    align-items: center;
    position: relative;
    flex-grow: 1;
}

.step-content {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #8c8c8c;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #8c8c8c;
    transition: 0.3s;
    margin-left: 10px;
    margin-right: 12px;
}

.step-item.active .step-circle {
    background-color: #3a86c8;
    color: #fff;
    border-color: #3a86c8;
}

.step-item.completed .step-circle {
    background-color: #2eb553;
    color: #fff;
    border-color: #2eb553;
}

.step-label {
    color: #666;
    margin-right: .9375rem;
}

.step-item.active .step-label {
    font-weight: bold;
    color: #3a86c8;
    margin-right: .9375rem;
}

.step-line {
    flex-grow: 1;
    height: 1px;
    background-color: #c5c5c5;
    margin: 0 5px;
}

.step-item:last-child .step-line {
    display: none;
}

.step-item.active~.step-item .step-line {
    background-color: #ccc;
}

.role-selection {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 70px;
}

.role-option {
    display: flex;
    align-items: center;
    /* justify-content: flex-start; */
    gap: 10px;
    border: 1px solid #ccc;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.role-option input[type="radio"] {
    display: none;
}

.custom-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.role-option input[type="radio"]:checked+.custom-radio {
    border-color: #3a86c8;
    background-color: #3a86c8;
}

.role-option input[type="radio"]:checked~span {
    font-weight: bold;
    color: #3a86c8;
}

.role-option:hover {
    border-color: #3a86c8;
    background-color: #f0f8ff;
}

.custom-radio::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    display: none;
}

.role-option input[type="radio"]:checked+.custom-radio::after {
    display: block;
}

.button-container {
    border-top: 1px solid #dddddd;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px 0 20px;
    clear: both;
    padding-top: 15px;
    padding-bottom: 5px;
    text-align: right
}

.button-container:has(.continue-btn:not(:only-child)) {
    justify-content: space-between;
}

.button-container:has(.continue-btn:only-child) {
    justify-content: flex-end;
}

.continue-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.error-message {
    margin-top: 5px;
}

.file-input-hidden {
    display: none;
}

.custom-upload-btn {
    cursor: pointer;
    color: #007bff;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.custom-upload-btn:hover {
    text-decoration: underline;
}

.selected-file-name {
    margin-top: 5px;
    font-style: italic;
    color: #333;
}

.list-file-upload th,
.list-file-upload td {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

.form-group {
    margin-bottom: 0px;
}

.alert-danger,
.alert-warning {
    margin: 0px 30px 20px 20px;
}

@media screen and (max-width: 959px) {
    .step-circle {
        width: 30px !important;
        height: 30px !important;
        margin-left: 0 !important;
        margin-right: 10px !important;
    }

    .step-label {
        margin-right: 0 !important;
    }
}