﻿
.icon-btn {
    position: absolute;
    right: 1%;
    width: 30px;
    height: 50%;
    text-align:center;
    top: 43%;
    background: transparent;
    cursor: pointer;
    z-index:111;
    user-select:none;
}
.icon-btn:hover{
    transform:scale(1.1);
    transition:all 0.4s;
}
.fast-login-user-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff; /* Beyaz arka plan */
    border-radius: 6px; /* Hafif yuvarlatılmış köşeler */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Gölge efekti */
    max-height: 0; /* Başlangıçta kapalı */
    overflow-y: auto;
    z-index: 10;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}
.fast-login-user,
.fast-login-user-delete {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.fast-login-user-list.show {
    max-height: 300px; /* Dropdown yüksekliği */
    opacity: 1;
}

.fast-login-user-list ul {
    list-style: none;
    margin: 0;
}

.fast-login-user-list li {
    padding: 0px 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.fast-login-user-list li:hover {
    background-color: #f0f0f0;
}
.fast-login-user {
    width: 100%;
    padding: 10px 15px;
}

.fast-login-user-delete:hover {
    transition: all 0.3s;
    transform: scale(1.1);
    color:red;
}
    /*.fast-login-bar {
    position: absolute;
    bottom: -70px;
    left: 0;
    width: 100%;
    height: 85px;
    background: #ffff;
    display: flex;
    flex-direction: column;
    padding: 0px 2px;
}
.fast-login-bar-mbl {
    width: 100%;
    height: 85px;
    background: #ffff;
    display: flex;
    flex-direction: column;
    padding: 0px 2px;
}

.fast-login-title {
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.fast-login-users {
    display: flex;
    justify-content: flex-start;*/ /* önemli */
    /*align-items: center;
    gap: 10px;
    margin-top: 5px;
    overflow-x: auto;*/ /* sadece yatay scroll */
    /*overflow-y: hidden;
    width:95%;
    margin-top:15px;
    margin-left:2.5%;
    scroll-behavior: smooth;
}

    .fast-login-users::-webkit-scrollbar {
        height: 0px;
    }

    .fast-login-users::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 0px;
    }


    .fast-login-users::-webkit-scrollbar {
        height: 0px;
    }

    .fast-login-users::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 4px;
    }

    .fast-login-users::-webkit-scrollbar-track {
        background: transparent;
    }

.fast-login-user {
    font-size: 0.7rem;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 6px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    flex-shrink: 0;
}

    .fast-login-user:hover {
        background: black;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
    }*/
    .login-header {
        font-size: 20px;
        font-weight: bold;
        color: #1A2035;
    }

.middle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-width: 300px;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
}

.login-container-pc {
    /* background-color: #1A2035; */
    background-color: var(--MenuColor);
    box-shadow: 10px 0px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 900px;
    opacity:0.93;
}

.login-container-mbl {
    background-color: var(--MenuColor);
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 400px;
    opacity: 0.93;
}

.login-info {
    color: var(--TextColor);
}

.google-btn {
    width: 100%;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f5fa;
    border: 0px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2); /* Gölge eklemek için */
    border-radius: 2px;
    cursor: pointer;
    transition: ease 0.5s;
    user-select: none;
}

    .google-btn:hover {
        background-color: black;
        color: white;
    }

    .google-btn img {
        width: 30px;
    }

input[type="submit"] {
    width: 100%;
    height: 38px;
    border: 1px solid black;
    background-color: white;
    border-radius: 2px;
    transition: ease 0.5s;
    margin-bottom: 4px;
}

    input[type="submit"]:hover {
        background-color: black;
        color: white;
    }