:root {
    --bs-blue: #0047BA;
    --bs-primary: #0047BA;
    --bs-btn-hover-color: #0047BA;
}

:root {
    --bs-font-sans-serif: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

main {
    flex: 1;
}

.navbar {
    height: 70px;
}

.logo {
    height: 36px;
}

.bg-blue {
    background-color: #0036a9;
}

.bg-green {
    background-color: #3DAE2B;
}

.main-content {
    background-color: #EBF2FD;
    border-radius: 30px;
    max-width: 825px;
}

h3 {
    color: #475467;
    font-weight: 500;
    font-size: 28px;
}

.sub-title {
    font-size: 20px;
    font-weight: 300;
    color: #475467;
}

.text-gray-2 {
    color: #667085;
}
.text-gray-4 {
    color: #98A2B3;
}
.content-center {
    display: flex;
    width: 100%;
    position: relative;
    margin: 50px auto;
    flex-direction: column;
}

.gap-8 {
    gap: 8px;
}

.gap-16 {
    gap: 16px;
}
 
.btn-style1 {

    background: #0047BA;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    word-wrap: break-word;
    line-height: 24px;
}

.btn-style1-outline {
    background-color: #ebf2fd;
    border: solid 2px #0047ba;
    color: #0047ba;
    line-height:33px;
}
.btn-style2-outline {
    background-color: #ffffff;
    border: solid 2px #0047ba;
    color: #0047ba;
    line-height: 33px;
}
.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: #0047ba;
    border-color: #0047ba;
}

.btn:first-child:active {
    color: var(--bs-btn-hover-color);
    background-color: #0047ba;
    border-color: #0047ba;
}

.text-base {
    font-size: 14px;
    font-family: Inter, sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

.code-input {
    width: 16%;
    height: 55px;
    padding: 8px 8px;
    background: white;
    border-radius: 4.8px;
    border: 1px solid #D0D5DD;
    outline-offset: -1px;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 30px;
    color: #101828;
    text-align: center;
}
.custom-input {
    padding: 8px 16px;
    background: white;
    border-radius: 8px;
    outline: none;
    border: 1px solid #D0D5DD;
    color: #101828;
    font-size: 20px;
    font-family: Inter, sans-serif;
    font-weight: 300;
    line-height: 30px;
}
.custom-file-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 40px 6px 16px;
    box-shadow: 0px 0px 0px 1px rgba(9, 25, 72, 0.18);
    border-radius: 6px;
    background-color: white;
    width: 100%;
    cursor: pointer;
    color: #667085;
    font-size: 20px;
    font-family: Inter,sans-serif;
    font-weight: 300;
    line-height: 30px;
    word-wrap: break-word;
}

.custom-placeholder {
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.custom-select {
    height: 48px;
    color: #101828;
    font-size: 20px;
    font-family: Inter;
    font-weight: 300;
    line-height: 30px;
    word-wrap: break-word
}
.form-check label {
    color: #475467;
    font-size: 16px;
    font-weight: 400;
}

.header-font2 {
    font-size: 16px;
    color: #475467;
    font-weight: 500;
}

footer {

    width: 100%;
    background-color: #f8f9fa;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px solid #e7e7e7;
    margin-top: auto;

}

footer .logo {
    max-height: 40px;
    /* Logo boyutunu ayarlayabilirsiniz */
}

.footer-text-social {
    color: #003A99 !important;
    font-size: 14px;
    line-height: 20px;
}

.social-icons a {
    font-size: 1.5rem;
    margin-left: 15px;
    color: #495057;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #0056b3;
}

/* WİZARD STEP */
.step-wizard {
    display: flex;
    justify-content: space-around;
    max-width: 750px;
    position: relative;
    margin: 20px auto;
}

.step-wizard-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-wizard-item:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 50%;
    height: 4px;
    width: 100%;
    background-color: #98A2B3;
    z-index: 1;
}

/* Adım numaralarını içeren daire */
.step-wizard-item .progress-count {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #98A2B3;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

/* Adım başlığı */
.step-wizard-item .progress-label {
    font-size: 16px;
    color: #475467;
    /* Pasif başlık rengi (açık gri) */
    text-align: center;
}

/* Aktif adım için stiller */
.step-wizard-item.active .progress-count {
    background-color: #3DAE2B;
    /* Aktif daire rengi (yeşil) */
}

.step-wizard-item.active .progress-label {
    color: #222222;
    /* Aktif başlık rengi (beyaz) */
    font-weight: 500;
}

/* Aktif adımdan sonraki çizginin rengini değiştirme */
.step-wizard-item.active:not(:last-child)::before {
    background-color: #3DAE2B;
    /* Aktif çizgi rengi (yeşil) */
}

.p-40 {
    padding: 40px;
}

.p-60 {
    padding: 60px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-60 {
    padding-top: 60px;
}

.ml-3 {
    margin-left: 2rem;
}

.header-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    color: #fff;
}

.header-text img {
    width: 20px;
    height: 15px;
    padding-right: 5px;
}

.index-slider {
    height: 510px;
}

.step-process-wrapper {
    background-color: #3DAE2B;
    border-radius: 1rem;
    padding: 0 0;
    color: white;
}

.step-item {
    display: flex;
    flex-direction: column;
    /* ikon üstte, yazı altta */
    align-items: center;
    /* yatay ortalama */
    justify-content: center;
    /* dikey ortalama */
    text-align: center;
    /* yazıyı ortala */
    flex: 1;
    /* eşit genişlik */
    padding: 20px;
}

.step-item .bi {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step-item p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    min-height: 57px;
}


.text-right {
    text-align: right;
}

span.field-validation-valid {
    color: #F31260;
    font-size: 0.875em;
    margin-top: 0.25rem;
    display: block;
}

.input-validation-error {
    border-color: #F31260;
    padding-right: calc(1.5em + 0.75rem);
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='8' height='10' fill='none' stroke='%23F31260'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle r='.5' fill='%23F31260' cx='6' cy='8.2'/%3e%3c/svg%3e");
}

    .input-validation-error:focus {
        border-color: #F31260;
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgb(255 211 223);
    }

select.input-validation-error {
    border-color: #F31260 !important;
    box-shadow: 0 0 0 0.25rem rgb(255 211 223);
}

.custom-select.input-validation-error {
    border-color: #F31260;
    padding-right: calc(1.5em + 0.75rem);
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
select {
    align-self: stretch;
    padding-left: 16px;
    padding-right: 40px;
    padding-top: 6px;
    padding-bottom: 6px;
    box-shadow: 0px 0px 0px 1px rgba(9.38, 25.09, 72.22, 0.18);
    border: none;
    border-radius: 6px;
    appearance: none;
    background-color: white;
    background-image: url('/assets/image/icon-down.svg');
    background-repeat: no-repeat;
    background-position: right 10px center;
}

    select:focus-visible, select:focus {
        box-shadow: 0px 0px 0px 3px rgba(12, 24, 61, 0.32), 0px 0px 0px 2px rgba(255, 255, 255, 1), 0px 0px 0px 1px rgba(51, 92, 255, 1), 0px 1px 2px 0px rgba(12, 24, 61, 0.4) !important;
    }

.cursor-wait {
    cursor: wait !important;
}


.custom-file-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 40px 6px 16px;
    box-shadow: 0px 0px 0px 1px rgba(9, 25, 72, 0.18);
    border-radius: 6px;
    background-color: white;
    width: 100%;
    cursor: pointer;
    color: #667085;
    font-size: 20px;
    font-family: Inter,sans-serif;
    font-weight: 300;
    line-height: 30px;
    word-wrap: break-word;
}

.custom-placeholder {
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-icon {
    position: absolute;
    right: 10px;
    width: 16px;
    height: 16px;
    pointer-events: none; /* Görsel tıklanmasın, wrapper tetiklesin */
}

.real-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.d-inline-flex.justify-content-start.align-items-start.gap-8 {
    line-height: 15px;
}



@media (max-width: 1000px) {
    .m-dnone {
        display: none;
    }
}

@media (min-width: 768px) {
    .step-process-wrapper .col-md-3 {
        position: relative;
    }

    .step-process-wrapper .col-md-3:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 70%;
        border-right: 1px solid rgba(255, 255, 255, 0.4);
    }
   
}
@media (max-width: 768px) {
    .agreement-label {
        font-size: 14px !important;
    }
}
@media (max-width: 767.98px) {
    .step-item:not(:last-child) {
        margin-bottom: 2rem;
    }

    .m-dnone {
        display: none;
    }
}

@media (max-width: 430px) {
    .step-wizard-item .progress-count {
        height: 40px;
        width: 40px;
        font-size: 18px;

    }

    .step-wizard-item .progress-label {
        font-size: 13px;

    }

    .step-wizard-item:not(:last-child)::before {

        top: 20px;

    }

    .p-40 {
        padding: 40px 12px;
    }

    .p-40-m {
        padding: 40px 25px;
        margin-bottom: 10px;
    }

    .p-60 {
        padding: 40px 12px;
    }

    .pt-60 {
        padding-top: 40px;
    }

    .sub-title {
        font-size: 16px;
        font-weight: 400;
    }


    h3 {
        font-weight: 500;
        font-size: 24px;
    }

    .ml-40 {
        line-height: 40px;
    }

    .header-text {
        display: none !important;
    }

    .container.d-flex.justify-content-between {
        display: flex !important;
        align-content: stretch;
        flex-direction: column-reverse;
    }

    .d-grid.gap-2.d-md-flex {
        display: flex !important;
        flex-direction: column-reverse;
    }

    .m-dnone {
        display: none;
    }
}