/* TABIRCI_AUTH_UI_V2 */

body.tabirci-auth-page{
    min-height:100vh;

    display:flex;
    flex-direction:column;

    margin:0;

    background:
        radial-gradient(
            circle at 50% 0,
            #fff 0,
            #f7f9fc 38%,
            #f2f5fa 100%
        );

    color:#2c2d38;
}


body.tabirci-auth-page
.form-container{
    width:
        calc(
            100%
            -
            32px
        );

    max-width:560px;

    box-sizing:border-box;

    margin:
        48px
        auto
        28px;

    padding:
        38px
        42px;

    background:#fff;

    border:
        1px solid
        #ebe8de;

    border-top:
        5px solid
        #d4af37;

    border-radius:14px;

    box-shadow:
        0
        16px
        44px
        rgba(
            26,
            26,
            46,
            .08
        );
}


body.tabirci-auth-page
.form-container h1{
    margin:
        0
        0
        10px;

    color:#1a1a2e;

    font-family:
        'Playfair Display',
        Georgia,
        serif;

    font-size:31px;
    line-height:1.2;

    text-align:center;
}


body.tabirci-auth-page
.alt-yazi{
    max-width:430px;

    margin:
        0
        auto
        28px;

    color:#686e7b;

    font-size:15px;
    line-height:1.65;

    text-align:center;
}


body.tabirci-auth-page
.form-grup{
    margin-bottom:18px;
}


body.tabirci-auth-page label{
    display:block;

    margin-bottom:7px;

    color:#29293a;

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


body.tabirci-auth-page
input[type="text"],
body.tabirci-auth-page
input[type="email"],
body.tabirci-auth-page
input[type="password"]{
    width:100%;
    min-height:48px;

    box-sizing:border-box;

    padding:
        12px
        14px;

    border:
        1px solid #d8dce6;

    border-radius:8px;

    background:#fff;

    color:#252535;

    font-family:inherit;
    font-size:16px;

    outline:none;
}


body.tabirci-auth-page
input:focus{
    border-color:#d4af37;

    box-shadow:
        0
        0
        0
        3px
        rgba(
            212,
            175,
            55,
            .15
        );
}


body.tabirci-auth-page
button[type="submit"],
body.tabirci-auth-page
.btn-kayit,
body.tabirci-auth-page
.btn-giris{
    width:100%;

    box-sizing:border-box;

    padding:
        14px
        18px;

    border:0;
    border-radius:8px;

    background:#1a1a2e;

    color:#fff;

    font-family:inherit;
    font-size:16px;
    font-weight:800;

    cursor:pointer;
}


body.tabirci-auth-page
button[type="submit"]:hover,
body.tabirci-auth-page
.btn-kayit:hover,
body.tabirci-auth-page
.btn-giris:hover{
    background:#d4af37;
    color:#1a1a2e;
}


body.tabirci-auth-page
.uyari{
    box-sizing:border-box;

    margin-bottom:20px;
    padding:
        14px
        16px;

    border-radius:8px;

    font-size:14px;
    line-height:1.6;
}


body.tabirci-auth-page
.uyari.hata{
    border:
        1px solid #f2c5c5;

    background:#fff1f1;

    color:#922828;
}


body.tabirci-auth-page
.uyari.basarili{
    border:
        1px solid #bfe1c5;

    background:#eff9f1;

    color:#286b34;
}


body.tabirci-auth-page
.alt-linkler{
    margin-top:22px;

    color:#666d79;

    font-size:14px;
    line-height:1.8;

    text-align:center;
}


body.tabirci-auth-page
.form-container a{
    color:#1a1a2e;
    font-weight:700;
}


body.tabirci-auth-page
.tabirci-site-footer{
    margin-top:auto;
}


@media(max-width:620px){

    body.tabirci-auth-page
    .form-container{

        width:
            calc(
                100%
                -
                24px
            );

        margin:
            28px
            auto
            20px;

        padding:
            28px
            20px;

        border-radius:11px;
    }


    body.tabirci-auth-page
    .form-container h1{
        font-size:27px;
    }
}


/* TABIRCI_REGISTER_UI_CSS_V1 */

body.tabirci-register-page
.form-container{
    max-width:610px;
}


.auth-kicker{
    width:max-content;

    max-width:100%;

    box-sizing:border-box;

    margin:
        0
        auto
        13px;

    padding:
        6px
        11px;

    border:
        1px solid
        rgba(
            212,
            175,
            55,
            .45
        );

    border-radius:999px;

    background:#fffaf0;

    color:#806716;

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

    text-align:center;
}


.auth-register-steps{
    display:grid;

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

    gap:8px;

    margin:
        0
        0
        30px;
}


.auth-register-step{
    min-width:0;

    padding:
        11px
        6px;

    border:
        1px solid #e7e8ed;

    border-radius:8px;

    background:#f8f9fb;

    color:#858a94;

    text-align:center;
}


.auth-register-step span{
    width:27px;
    height:27px;

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

    margin:
        0
        auto
        6px;

    border-radius:50%;

    background:#e6e8ed;

    color:#646a75;

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


.auth-register-step small{
    display:block;

    overflow:hidden;

    font-size:11px;
    font-weight:700;
    line-height:1.3;

    text-overflow:ellipsis;
}


.auth-register-step.active{
    border-color:
        rgba(
            212,
            175,
            55,
            .55
        );

    background:#fffaf0;

    color:#806716;
}


.auth-register-step.active span{
    background:#d4af37;

    color:#1a1a2e;
}


.auth-password-note{
    margin-top:7px;

    color:#7c818c;

    font-size:12px;
    line-height:1.5;
}


.auth-success-icon{
    width:70px;
    height:70px;

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

    margin:
        0
        auto
        18px;

    border-radius:50%;

    background:#fff7da;

    font-size:32px;
}


.auth-success-info{
    margin-top:20px;

    padding:
        15px
        16px;

    border:
        1px solid #e5e7ed;

    border-radius:8px;

    background:#f8f9fb;

    color:#606673;

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


.auth-success-actions{
    margin-top:20px;

    text-align:center;
}


.auth-success-actions a{
    display:inline-block;

    padding:
        11px
        18px;

    border:
        1px solid #1a1a2e;

    border-radius:7px;

    color:#1a1a2e;

    font-size:14px;

    text-decoration:none;
}


.auth-success-actions a:hover{
    background:#1a1a2e;

    color:#fff;
}


@media(max-width:520px){

    .auth-register-steps{
        gap:5px;
    }


    .auth-register-step{
        padding:
            9px
            4px;
    }


    .auth-register-step small{
        font-size:10px;
    }
}


/* TABIRCI_AUTH_FLOW_DESIGN_CSS_V1 */

body.tabirci-auth-page{
    padding:0 !important;
    text-align:left;
}


body.tabirci-auth-page
.form-container{
    position:relative;
}


body.tabirci-auth-page
.alt{
    margin-top:22px;

    color:#666d79;

    font-size:14px;
    line-height:1.9;

    text-align:center;
}


body.tabirci-auth-page
.alt a{
    color:#1a1a2e;

    font-weight:700;

    text-decoration:none;
}


body.tabirci-auth-page
.alt a:hover{
    color:#a6851e;

    text-decoration:underline;
}


.auth-status-card{
    text-align:center;
}


.auth-status-icon{
    width:68px;
    height:68px;

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

    box-sizing:border-box;

    margin:
        0
        auto
        17px;

    border-radius:50%;

    font-size:30px;
    line-height:1;
    font-weight:800;
}


.auth-status-icon-success{
    border:
        1px solid #b9dfc0;

    background:#edf9ef;

    color:#287139;
}


.auth-status-icon-error{
    border:
        1px solid #f0c6c6;

    background:#fff1f1;

    color:#a12c2c;
}


.auth-status-icon-mail{
    border:
        1px solid
        rgba(
            212,
            175,
            55,
            .45
        );

    background:#fff8df;

    color:#8b6f13;
}


.auth-status-card
.uyari{
    margin-top:20px;
}


.auth-status-card
.btn{
    display:inline-flex;

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

    width:auto;

    min-width:150px;

    padding:
        12px
        22px;

    border-radius:8px;

    background:#1a1a2e;

    color:#fff;

    text-decoration:none;

    font-weight:800;
}


.auth-status-card
.btn:hover{
    background:#d4af37;

    color:#1a1a2e;
}


body.tabirci-auth-page
.form-container::before{
    content:"";

    position:absolute;

    top:-5px;
    left:28px;
    right:28px;

    height:5px;

    border-radius:
        0
        0
        5px
        5px;

    background:
        linear-gradient(
            90deg,
            #b89427 0%,
            #e2c24d 50%,
            #b89427 100%
        );

    pointer-events:none;
}


@media(max-width:620px){

    body.tabirci-auth-page
    .form-container::before{
        left:18px;
        right:18px;
    }


    .auth-status-icon{
        width:60px;
        height:60px;

        font-size:27px;
    }
}
