/* =========================================================
   VERRATON ERP
   LOGIN / AUTH SCREEN
   ========================================================= */

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body.verraton-auth-page {
    margin: 0;
    min-height: 100vh;
    background: #ffffff;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #18212f;
}


/* =========================================================
   ANA YAPI
   ========================================================= */

.verraton-auth-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
}


/* =========================================================
   SOL TANITIM PANELİ
   ========================================================= */

.verraton-auth-showcase {
    position: relative;
    width: 55%;
    min-height: 100vh;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(0, 208, 225, 0.20),
            transparent 35%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(29, 117, 197, 0.17),
            transparent 35%
        ),
        linear-gradient(
            140deg,
            #071824 0%,
            #0b2535 50%,
            #0d3445 100%
        );

    color: #ffffff;
}

.showcase-content {
    position: relative;
    z-index: 3;

    min-height: 100vh;

    display: flex;
    flex-direction: column;

    padding: 48px 65px 40px;
}


/* dekorasyon */

.showcase-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.decoration-one {
    width: 420px;
    height: 420px;

    top: -160px;
    right: -130px;

    border: 1px solid rgba(255,255,255,.08);
}

.decoration-two {
    width: 600px;
    height: 600px;

    bottom: -330px;
    left: -270px;

    border: 1px solid rgba(255,255,255,.05);
}


/* marka */

.showcase-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.showcase-brand-icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #02d8dd,
        #1687df
    );

    box-shadow:
        0 8px 25px rgba(0, 203, 220, .22);

    font-size: 20px;
}

.brand-name {
    display: inline-block;

    font-size: 22px;
    font-weight: 700;

    letter-spacing: 5px;
}

.brand-subtitle {
    margin-left: 4px;

    font-size: 11px;
    opacity: .65;

    vertical-align: top;
}


/* ana metin */

.showcase-main {
    margin: auto 0;
    max-width: 680px;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 14px;

    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50px;

    background: rgba(255,255,255,.06);

    color: #8ceaf1;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: .3px;
}

.showcase-main h1 {
    margin: 28px 0 18px;

    color: #ffffff;

    font-size: 52px;
    font-weight: 300;

    line-height: 1.09;
    letter-spacing: -1.8px;
}

.showcase-main h1 span {
    display: block;

    font-weight: 700;

    background: linear-gradient(
        90deg,
        #00d7dc,
        #5ab4ff
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-description {
    max-width: 585px;

    margin: 0 0 36px;

    color: rgba(255,255,255,.70);

    font-size: 16px;
    line-height: 1.75;
}


/* özellikler */

.showcase-features {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 13px;
}

.showcase-feature {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 15px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;

    background: rgba(255,255,255,.045);

    transition:
        transform .2s ease,
        background .2s ease;
}

.showcase-feature:hover {
    transform: translateY(-2px);

    background: rgba(255,255,255,.075);
}

.feature-icon {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: rgba(2, 215, 220, .12);

    color: #40e4e8;

    font-size: 17px;
}

.showcase-feature strong {
    display: block;

    margin-bottom: 4px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;
}

.showcase-feature span {
    display: block;

    color: rgba(255,255,255,.53);

    font-size: 11px;
}


/* footer */

.showcase-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    color: rgba(255,255,255,.47);

    font-size: 12px;
}

.device-info {
    display: flex;
    align-items: center;

    gap: 9px;
}

.device-info i {
    color: #4bdce5;
}

.creativera-text strong {
    color: rgba(255,255,255,.75);
}


/* =========================================================
   SAĞ LOGIN ALANI
   ========================================================= */

.verraton-auth-login {
    width: 45%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    position: relative;

    background: #ffffff;
}


/* üst bar */

.auth-topbar {
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 0 38px;
}

.language-selector {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #7c8795;

    font-size: 12px;
}

.language-selector select {
    width: auto;

    padding: 8px 28px 8px 8px;

    border: 0;
    outline: 0;

    background: transparent;

    color: #536171;

    font-size: 12px;

    cursor: pointer;
}

.auth-top-actions {
    display: flex;
    align-items: center;

    gap: 17px;

    font-size: 12px;
}

.auth-top-actions a {
    text-decoration: none;

    color: #344050;

    font-weight: 600;
}

.auth-top-actions a:hover {
    color: #04aebb;
}

.top-register-link {
    padding: 9px 16px !important;

    border-radius: 8px;

    background: #0aaeb9;

    color: #ffffff !important;

    transition: all .2s;
}

.top-register-link:hover {
    background: #078e98;
}

.already-registered {
    color: #82909c;
}


/* login ortalama */

.auth-login-container {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    padding:
        25px 65px 70px;
}


/* =========================================================
   LOGIN BOX
   ========================================================= */

.verraton-login-box {
    width: 100%;
    max-width: 465px;
}


/* logo */

.login-logo-area {
    margin-bottom: 30px;
}

.login-logo {
    display: block;

    max-width: 290px;
    width: 75%;

    height: auto;
}


/* başlık */

.login-heading {
    margin-bottom: 30px;
}

.login-heading h2 {
    margin: 0 0 9px;

    color: #172331;

    font-size: 27px;
    font-weight: 700;

    letter-spacing: -.5px;
}

.login-heading p {
    margin: 0;

    color: #8793a0;

    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   FORM
   ========================================================= */

.verraton-form-group {
    margin-bottom: 20px;
}

.verraton-form-group label {
    display: block;

    margin-bottom: 8px;

    color: #3d4a58;

    font-size: 12px;
    font-weight: 600;
}

.verraton-input-wrapper {
    position: relative;
}

.verraton-input-wrapper input {
    width: 100%;
    height: 50px;

    padding:
        0 48px
        0 44px;

    border: 1px solid #dfe5eb;
    border-radius: 10px;

    outline: none;

    background: #f9fbfc;

    color: #273443;

    font-size: 13px;

    transition:
        border-color .2s,
        box-shadow .2s,
        background .2s;
}

.verraton-input-wrapper input:focus {
    border-color: #13b8c1;

    background: #ffffff;

    box-shadow:
        0 0 0 3px
        rgba(19, 184, 193, .09);
}

.input-icon {
    position: absolute;

    left: 16px;
    top: 50%;

    z-index: 2;

    transform: translateY(-50%);

    color: #91a0ae;

    font-size: 14px;
}

.password-toggle {
    position: absolute;

    right: 8px;
    top: 50%;

    width: 36px;
    height: 36px;

    transform: translateY(-50%);

    border: 0;
    outline: none;

    background: transparent;

    color: #94a0ac;

    cursor: pointer;
}

.password-toggle:hover {
    color: #10adb7;
}


/* hata */

.verraton-error {
    margin-top: 7px;

    color: #dd4b39;

    font-size: 11px;
}


/* seçenekler */

.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin:
        7px 0
        24px;
}

.remember-me {
    display: flex !important;
    align-items: center;

    gap: 7px;

    margin: 0 !important;

    color: #697683 !important;

    font-size: 12px !important;
    font-weight: 400 !important;
}

.forgot-password {
    color: #099fac;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;
}

.forgot-password:hover {
    color: #077e88;

    text-decoration: none;
}


/* login button */

.verraton-login-button {
    width: 100%;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: 0;
    border-radius: 10px;

    outline: 0;

    background:
        linear-gradient(
            135deg,
            #02b7c4,
            #087cba
        );

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 8px 20px
        rgba(5, 151, 177, .20);

    transition:
        transform .2s,
        box-shadow .2s;
}

.verraton-login-button:hover {
    transform: translateY(-1px);

    box-shadow:
        0 11px 25px
        rgba(5, 151, 177, .28);
}

.verraton-login-button i {
    font-size: 11px;
}


/* =========================================================
   ÜYELİK
   ========================================================= */

.register-area {
    margin-top: 27px;

    padding: 18px;

    border: 1px solid #edf0f3;
    border-radius: 11px;

    background: #fafcfd;

    text-align: center;
}

.register-area span {
    color: #84909c;

    font-size: 12px;
}

.register-area a {
    margin-left: 4px;

    color: #099eaa;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}


/* =========================================================
   APP
   ========================================================= */

.login-app-area {
    margin-top: 22px;

    text-align: center;
}

.login-app-area > span {
    display: block;

    margin-bottom: 10px;

    color: #9da7b0;

    font-size: 10px;
}

.google-play-image {
    width: 120px;
    height: auto;
}


/* =========================================================
   DEMO
   ========================================================= */

.verraton-demo-area {
    width: 100%;
    max-width: 750px;

    margin:
        30px auto
        0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {

    .showcase-content {
        padding:
            42px 42px
            35px;
    }

    .showcase-main h1 {
        font-size: 44px;
    }

    .auth-login-container {
        padding:
            20px 45px
            60px;
    }

}


@media (max-width: 991px) {

    .verraton-auth-showcase {
        width: 48%;
    }

    .verraton-auth-login {
        width: 52%;
    }

    .showcase-content {
        padding: 35px 30px;
    }

    .showcase-main h1 {
        font-size: 37px;
    }

    .showcase-features {
        grid-template-columns: 1fr;
    }

    .showcase-description {
        font-size: 14px;
    }

    .showcase-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .auth-login-container {
        padding:
            20px 30px
            50px;
    }

}


/* MOBİL */

@media (max-width: 767px) {

    .verraton-auth-wrapper {
        display: block;
    }

    .verraton-auth-showcase {
        display: none;
    }

    .verraton-auth-login {
        width: 100%;
        min-height: 100vh;
    }

    .auth-topbar {
        height: auto;

        min-height: 65px;

        padding:
            14px 20px;
    }

    .auth-top-actions {
        gap: 8px;
    }

    .top-pricing-link {
        display: none;
    }

    .auth-login-container {
        align-items: flex-start;

        padding:
            35px 24px
            50px;
    }

    .verraton-login-box {
        max-width: 440px;

        margin: 0 auto;
    }

    .login-logo-area {
        text-align: center;
    }

    .login-logo {
        margin: auto;

        max-width: 240px;
    }

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

}


/* küçük telefon */

@media (max-width: 480px) {

    .auth-topbar {
        flex-direction: column;
        align-items: stretch;

        gap: 5px;

        padding:
            12px 20px;
    }

    .language-selector {
        justify-content: center;
    }

    .auth-top-actions {
        justify-content: center;
    }

    .auth-login-container {
        padding:
            25px 20px
            40px;
    }

    .login-options {
        align-items: flex-start;
    }

}
/* =========================================================
   VERRATON ERP
   REGISTER SCREEN
   ========================================================= */


/* Register sayfasında uzun içerik olduğu için
   sağ panel yukarıdan başlamalı */
.verraton-register-page .auth-login-container {
    align-items: flex-start;

    padding-top: 15px;
    padding-bottom: 60px;
}


/* Sol alan sabit hissi versin */
.verraton-register-page .showcase-content {
    position: sticky;
    top: 0;
}


/* =========================================================
   REGISTER BOX
   ========================================================= */

.verraton-register-box {
    width: 100%;
    max-width: 820px;

    margin: 0 auto;

    padding-top: 10px;
}


/* =========================================================
   REGISTER HEADER
   ========================================================= */

.register-header {
    margin-bottom: 28px;
}


.register-logo-area {
    margin-bottom: 22px;
}


.register-logo {
    display: block;

    width: 230px;
    max-width: 70%;

    height: auto;
}


.register-title {
    margin-bottom: 24px;
}


.register-title h2 {
    margin: 0 0 8px;

    color: #172331;

    font-size: 27px;
    font-weight: 700;

    letter-spacing: -.5px;
}


.register-title p {
    max-width: 620px;

    margin: 0;

    color: #8793a0;

    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   STEPS
   ========================================================= */

.register-steps {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 8px;
}


.register-step {
    display: flex;
    align-items: center;

    gap: 9px;

    min-width: 0;

    padding: 10px;

    border: 1px solid #edf0f3;
    border-radius: 10px;

    background: #fafcfd;
}


.register-step > span {
    flex-shrink: 0;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #eef3f5;

    color: #83909c;

    font-size: 11px;
    font-weight: 700;
}


.register-step strong {
    display: block;

    overflow: hidden;

    color: #465361;

    font-size: 11px;
    font-weight: 700;

    white-space: nowrap;
    text-overflow: ellipsis;
}


.register-step small {
    display: block;

    margin-top: 2px;

    overflow: hidden;

    color: #9da7b0;

    font-size: 9px;

    white-space: nowrap;
    text-overflow: ellipsis;
}


.register-step.active {
    border-color: rgba(10, 174, 185, .18);

    background: rgba(10, 174, 185, .05);
}


.register-step.active > span {
    background:
        linear-gradient(
            135deg,
            #02b7c4,
            #087cba
        );

    color: #ffffff;
}


/* =========================================================
   REGISTER SECTION
   ========================================================= */

.register-section {
    margin-bottom: 18px;

    padding: 22px;

    border: 1px solid #e9edf1;
    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 6px 24px
        rgba(32, 57, 72, .045);
}


.register-section-header {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 20px;
    padding-bottom: 15px;

    border-bottom: 1px solid #edf1f3;
}


.register-section-icon {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            rgba(2, 183, 196, .11),
            rgba(8, 124, 186, .10)
        );

    color: #079fab;

    font-size: 16px;
}


.register-section-header h3 {
    margin: 0 0 3px;

    color: #263442;

    font-size: 14px;
    font-weight: 700;
}


.register-section-header p {
    margin: 0;

    color: #99a3ad;

    font-size: 10px;
    line-height: 1.45;
}


/* =========================================================
   GRID
   ========================================================= */

.register-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px 18px;
}


.register-form-grid +
.register-form-grid {
    margin-top: 16px;
}


.register-form-grid-three {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}


.register-field-full {
    grid-column: 1 / -1;
}


/* =========================================================
   FIELDS
   ========================================================= */

.register-field {
    min-width: 0;
}


.register-field label {
    display: block;

    margin: 0 0 7px;

    color: #465361;

    font-size: 11px;
    font-weight: 600;
}


.register-input-wrapper {
    position: relative;

    width: 100%;
}


.register-input-wrapper .form-control {
    width: 100%;
    height: 46px;

    padding:
        0 42px
        0 42px;

    border: 1px solid #dfe5eb;
    border-radius: 9px;

    outline: 0;

    background: #f9fbfc;

    color: #273443;

    font-size: 12px;

    box-shadow: none;

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}


.register-input-wrapper .form-control:focus {
    border-color: #13b8c1;

    background: #ffffff;

    box-shadow:
        0 0 0 3px
        rgba(19, 184, 193, .08);
}


.register-input-wrapper .form-control[readonly] {
    cursor: pointer;

    background: #f4f7f8;
}


.register-input-icon {
    position: absolute;

    z-index: 5;

    top: 50%;
    left: 15px;

    transform: translateY(-50%);

    color: #91a0ae;

    font-size: 13px;

    pointer-events: none;
}


/* =========================================================
   SELECT2
   ========================================================= */

.register-select-wrapper .select2-container {
    width: 100% !important;
}


.register-select-wrapper
.select2-container
.select2-selection--single {
    height: 46px !important;

    border: 1px solid #dfe5eb !important;
    border-radius: 9px !important;

    background: #f9fbfc !important;
}


.register-select-wrapper
.select2-container
.select2-selection--single
.select2-selection__rendered {
    height: 44px;

    padding-left: 42px !important;

    color: #273443;

    font-size: 12px;
    line-height: 44px !important;
}


.register-select-wrapper
.select2-container
.select2-selection--single
.select2-selection__arrow {
    height: 44px !important;

    right: 8px !important;
}


/* =========================================================
   PASSWORD
   ========================================================= */

.register-password-toggle {
    position: absolute;

    z-index: 6;

    top: 50%;
    right: 7px;

    width: 34px;
    height: 34px;

    transform: translateY(-50%);

    border: 0;
    border-radius: 7px;

    outline: 0;

    background: transparent;

    color: #94a0ac;

    cursor: pointer;
}


.register-password-toggle:hover {
    background: #f0f5f6;

    color: #079fab;
}


/* =========================================================
   VALIDATION ALERT
   ========================================================= */

.verraton-register-alert {
    display: flex;

    gap: 12px;

    margin-bottom: 18px;
    padding: 15px 17px;

    border: 1px solid #f3d6d2;
    border-radius: 11px;

    background: #fff9f8;

    color: #9f4034;

    font-size: 11px;
}


.register-alert-icon {
    flex-shrink: 0;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #fde6e2;

    color: #d95645;
}


.verraton-register-alert strong {
    display: block;

    margin-bottom: 5px;
}


.verraton-register-alert ul {
    margin: 0;
    padding-left: 17px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.register-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 4px;
    padding: 5px 0 20px;
}


.register-security {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #97a2ac;

    font-size: 10px;
}


.register-security i {
    color: #18a6b1;
}


.verraton-register-button {
    min-width: 220px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    padding: 0 23px;

    border: 0;
    border-radius: 10px;

    outline: 0;

    background:
        linear-gradient(
            135deg,
            #02b7c4,
            #087cba
        );

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 8px 20px
        rgba(5, 151, 177, .20);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        opacity .2s ease;
}


.verraton-register-button:hover {
    transform: translateY(-1px);

    box-shadow:
        0 11px 25px
        rgba(5, 151, 177, .28);
}


.verraton-register-button:disabled {
    opacity: .65;

    cursor: wait;

    transform: none;
}


/* =========================================================
   LOGIN LINK
   ========================================================= */

.register-login-link {
    margin-bottom: 30px;

    text-align: center;

    color: #8f9aa4;

    font-size: 11px;
}


.register-login-link a {
    margin-left: 4px;

    color: #079faa;

    font-weight: 700;

    text-decoration: none;
}


.register-login-link a:hover {
    color: #087cba;
}


/* =========================================================
   REGISTER PAGE - TOPBAR
   ========================================================= */

.verraton-register-page .auth-topbar {
    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1350px) {

    .register-form-grid-three {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 1100px) {

    .register-steps {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 991px) {

    .verraton-register-box {
        max-width: 100%;
    }

    .register-section {
        padding: 18px;
    }

    .register-form-grid,
    .register-form-grid-three {
        grid-template-columns: 1fr;
    }

    .register-field-full {
        grid-column: auto;
    }

}


@media (max-width: 767px) {

    .verraton-register-page
    .auth-login-container {
        padding:
            25px 20px
            45px;
    }

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

    .register-logo {
        margin: 0 auto;
    }

    .register-title p {
        margin-left: auto;
        margin-right: auto;
    }

    .register-steps {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        text-align: left;
    }

    .register-form-footer {
        flex-direction: column;

        align-items: stretch;
    }

    .register-security {
        justify-content: center;
    }

    .verraton-register-button {
        width: 100%;
    }

}


@media (max-width: 480px) {

    .register-steps {
        grid-template-columns: 1fr;
    }

    .register-section {
        padding: 15px;

        border-radius: 11px;
    }

    .register-section-header {
        align-items: flex-start;
    }

    .register-title h2 {
        font-size: 23px;
    }

}
/* =========================================================
   VERRATON ERP - REGISTER
   Mevcut register_form.blade.php yapısını modernleştirir
   ========================================================= */

.verraton-register-page .auth-login-container {
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 60px;
}

.verraton-register-wrapper {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.verraton-register-header {
    margin-bottom: 24px;
}

.verraton-register-logo {
    width: 230px;
    max-width: 70%;
    height: auto;
    display: block;
    margin-bottom: 22px;
}

.verraton-register-header h2 {
    margin: 0 0 7px;
    color: #172331;
    font-size: 26px;
    font-weight: 700;
}

.verraton-register-header p {
    margin: 0;
    color: #8793a0;
    font-size: 13px;
    line-height: 1.6;
}

/* Ana form */
.verraton-register-form {
    width: 100%;
}

/* Eski wizard başlıkları */
.verraton-register-form h3 {
    margin: 22px 0 12px;
    color: #273644;
    font-size: 15px;
    font-weight: 700;
}

/* Fieldset = modern kart */
.verraton-register-form fieldset {
    margin: 0 0 20px !important;
    padding: 22px 22px 10px !important;

    border: 1px solid #e6ebef !important;
    border-radius: 14px !important;

    background: #ffffff !important;

    box-shadow:
        0 7px 25px rgba(31, 57, 72, .045);
}

/* Legend */
.verraton-register-form fieldset legend {
    width: auto !important;
    margin: 0 0 18px !important;
    padding: 0 10px !important;

    border: 0 !important;

    color: #263746 !important;

    font-size: 15px !important;
    font-weight: 700 !important;
}

/* Bootstrap kolonlarının iç boşluğu */
.verraton-register-form .col-md-12,
.verraton-register-form .col-md-6,
.verraton-register-form .col-md-4,
.verraton-register-form .col-sm-6 {
    padding-left: 8px;
    padding-right: 8px;
}

/* Alan */
.verraton-register-form .form-group {
    margin-bottom: 18px;
}

/* Label */
.verraton-register-form .form-group > label {
    display: block;

    margin: 0 0 7px;

    color: #3e4c5a;

    font-size: 11px;
    font-weight: 600;
}

/* Input group */
.verraton-register-form .input-group {
    width: 100%;
}

/* Sol ikon */
.verraton-register-form .input-group-addon {
    width: 43px !important;

    padding: 0 !important;

    border: 1px solid #dfe5eb !important;
    border-right: 0 !important;
    border-radius: 9px 0 0 9px !important;

    background: #f7fafb !important;

    color: #8294a2 !important;

    text-align: center;
}

/* Text input / select */
.verraton-register-form .form-control {
    height: 46px !important;

    border: 1px solid #dfe5eb !important;
    border-radius: 9px !important;

    background: #f9fbfc !important;

    color: #273443 !important;

    font-size: 12px !important;

    box-shadow: none !important;

    transition:
        border-color .2s,
        box-shadow .2s,
        background .2s;
}

/* Input-group içindeki input */
.verraton-register-form .input-group .form-control {
    border-radius: 0 9px 9px 0 !important;
}

/* Focus */
.verraton-register-form .form-control:focus {
    border-color: #10b1bc !important;

    background: #ffffff !important;

    box-shadow:
        0 0 0 3px
        rgba(16, 177, 188, .08) !important;
}

/* Placeholder */
.verraton-register-form .form-control::placeholder {
    color: #a4adb6;
}

/* File input */
.verraton-register-form input[type="file"] {
    width: 100%;

    min-height: 46px;

    padding: 8px;

    border: 1px solid #dfe5eb;
    border-radius: 9px;

    background: #f9fbfc;

    color: #657481;

    font-size: 11px;
}

/* Select2 */
.verraton-register-form .select2-container {
    width: 100% !important;
}

.verraton-register-form
.select2-container--default
.select2-selection--single {
    height: 46px !important;

    border: 1px solid #dfe5eb !important;
    border-radius: 0 9px 9px 0 !important;

    background: #f9fbfc !important;
}

.verraton-register-form
.select2-container--default
.select2-selection--single
.select2-selection__rendered {
    height: 44px !important;

    color: #273443 !important;

    font-size: 12px !important;

    line-height: 44px !important;
}

.verraton-register-form
.select2-container--default
.select2-selection--single
.select2-selection__arrow {
    height: 44px !important;
}

/* Wizard / progress */
.verraton-register-form .nav-tabs {
    display: flex;

    gap: 10px;

    margin-bottom: 20px;

    border: 0 !important;
}

.verraton-register-form .nav-tabs > li {
    flex: 1;

    margin: 0 !important;
}

.verraton-register-form .nav-tabs > li > a {
    margin: 0 !important;
    padding: 14px 16px !important;

    border: 1px solid #e6ebef !important;
    border-radius: 10px !important;

    background: #f5f7f8 !important;

    color: #85919c !important;

    font-size: 12px !important;
    font-weight: 600 !important;

    text-align: center;
}

.verraton-register-form .nav-tabs > li.active > a,
.verraton-register-form .nav-tabs > li.active > a:hover,
.verraton-register-form .nav-tabs > li.active > a:focus {
    border-color: transparent !important;

    background:
        linear-gradient(
            135deg,
            #02b7c4,
            #087cba
        ) !important;

    color: #ffffff !important;

    box-shadow:
        0 7px 18px
        rgba(5, 151, 177, .18);
}

/* Önceki/Sonraki/Submit */
.verraton-register-form .btn-primary,
.verraton-register-form .btn-success {
    min-width: 110px;

    height: 42px;

    padding: 0 18px;

    border: 0 !important;
    border-radius: 8px !important;

    background:
        linear-gradient(
            135deg,
            #02b7c4,
            #087cba
        ) !important;

    color: #ffffff !important;

    font-size: 12px !important;
    font-weight: 600 !important;

    box-shadow:
        0 6px 15px
        rgba(5, 151, 177, .15);

    transition:
        transform .2s,
        box-shadow .2s;
}

.verraton-register-form .btn-primary:hover,
.verraton-register-form .btn-success:hover {
    transform: translateY(-1px);

    box-shadow:
        0 9px 20px
        rgba(5, 151, 177, .23);
}

/* Previous button */
.verraton-register-form .btn-default {
    min-width: 100px;

    height: 42px;

    border: 1px solid #e1e6ea !important;
    border-radius: 8px !important;

    background: #f5f7f8 !important;

    color: #89949e !important;

    font-size: 12px !important;
}

/* Checkbox */
.verraton-register-form .input-icheck + ins {
    border-radius: 4px;
}

/* Terms */
.verraton-register-form .terms_condition {
    color: #079eaa;
}

/* Error */
.verraton-register-form .has-error .form-control {
    border-color: #dd6254 !important;
}

.verraton-register-form .help-block {
    margin-top: 5px;

    color: #d75547;

    font-size: 10px;
}

/* Sol showcase register sayfasında ekranla beraber uzamasın */
.verraton-register-page .verraton-auth-showcase {
    position: sticky;
    top: 0;

    height: 100vh;
}

/* Sağ taraf kayabilir */
.verraton-register-page .verraton-auth-login {
    min-height: 100vh;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .verraton-register-form fieldset {
        padding: 18px 14px 8px !important;
    }

}

@media (max-width: 767px) {

    .verraton-register-wrapper {
        max-width: 500px;
    }

    .verraton-register-header {
        text-align: center;
    }

    .verraton-register-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .verraton-register-form .nav-tabs {
        flex-direction: column;
    }

    .verraton-register-form .nav-tabs > li {
        width: 100%;
    }

    .verraton-register-form fieldset {
        padding: 18px 12px 6px !important;
    }

}