﻿

.card {
    width: 100%;
}

.login-Page {
    display: flex;
    flex-direction: row;
}
.content {
    width: 450px;
    height: auto;
    margin: 0 auto;
    padding: 1em .2em;
}
.error-page {
    width: -webkit-fill-available;
}
.nav-pills {
    width: 450px;
}



.nav-pills .nav-link {
    font-weight: bold;
    padding-top: 13px;
    text-align: center;
    background: #343436;
    color: #fff;
    border-radius: 30px;
    height: 7em;
}

    .nav-pills .nav-link.active {
        background: #fff;
        color: #000;
    }

.tab-content {
    position: absolute;
    width: 450px;
    height: 100%;
    margin-top: -50px;
    background: #fff;
    color: #000;
    border-radius: 30px;
    z-index: 1000;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.4);
    padding: 30px;
    margin-bottom: 50px;
    height: max-content;
}

    .tab-content button {
        border-radius: 15px;
        width: -webkit-fill-available;
        margin: 0 auto;
        float: right;
    }

#eDevletLogin {
    display: flex;
    flex-direction: column;
    justify-content: center; /* 🔸 Dikey ortalama */
    align-items: center; /* 🔸 Yatay ortalama */
    height:max-content;
}
    #eDevletLogin.show {
        min-height: 21em;
    }
.password-wrapper {
    position: relative;
}

.toggle-button {
    display: inline-flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: unset;
    right: 12px;
    cursor: pointer;
}

.eye-icon {
    width: 20px;
    height: 20px;
}


@media screen and (max-width: 992px) {
    #eDevletLogin {
        display: flex;
        flex-direction: column;
        justify-content: center; /* 🔸 Dikey ortalama */
        align-items: center; /* 🔸 Yatay ortalama */
        
    }

    .content {
        width: -webkit-fill-available;
        height: auto;
        margin: 0 auto;
        padding: 1em .1em;
    }

    .nav-pills {
        width: fit-content;

    }

    .tab-content {
        position: absolute;
        width: -webkit-fill-available;
        height: auto;
        margin-top: -50px;
        background: #fff;
        color: #000;
        border-radius: 30px;
        z-index: 1000;
        box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.4);
        padding: 1em;
        margin-bottom: 50px;
        margin-right: 0.8em;
        /*min-height:21em;*/
    }
    .nav-pills .nav-link {
        height: 7em;
    }
}