@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@400;700&display=swap');
@import './bootstrap.min.css';

.login-layout {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;

    background: #eef;

    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;

}

.login-card-stabilizator {
    --login-w: 400px;
    min-width: var(--login-w);
    max-width: var(--login-w);
    margin-left: auto;
    margin-right: auto;
}

@media(max-width: 500px) {
    .login-card-stabilizator {
        --login-w: 90% !important;
    }
}

.login_logo img {
    max-height: 100px;
}

.login_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}


.login-layout input,
.login-layout label,
.login-layout button {
    font-family: "FiraGO", sans-serif;
}

.btn-massive {
    font-size: 16px;
    font-feature-settings:'case' on;
    font-weight: 600;
    padding: 15px;
}

#loginform {
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px 20px 29px 20px;
    border-radius: 8px;
}

.copyright {
    font-family: "FiraGO", sans-serif;
    font-feature-settings:'case' on;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #9962cd;
}

.home_page_link {
    font-family: "FiraGO", sans-serif;
    font-feature-settings:'case' on;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    margin: auto;
    text-decoration: none;
    background-color: #5a6cc6;
    border-radius: 50px;
    padding: 5px 12px;
}

.home_page_link:hover {
    background-color: #4d5fb8;
    color: #fff;
}

.lang-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    border-radius: 0px 0px 25px 25px;
    background-color: #fff;
    padding: 0px;

    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 6;
    max-width: fit-content;
    margin: 0 auto;
    overflow: hidden;
}

.lang-switcher a {
    font-family: "FiraGO", sans-serif;
    font-feature-settings:'case' on;
    font-size: 14px;
    font-weight: 600;
    color: #9962cd;
    text-decoration: none;
}

.lang-switcher .active{
    background-color: #9962cd;
}

.lang-switcher a:first-child {
       padding: 7px 10px 8px 14px;
}

.lang-switcher a:last-child {
    padding: 7px 14px 8px 10px;
}


.lang-switcher img {
    --wh: 24px;
    width: var(--wh);
    height: var(--wh);
    border-radius: 50px;
    overflow: hidden;
    outline: 1px solid #ccc;
}

.lang-switcher span {
    color: #ccc;
    font-weight: 600;
    padding-bottom: 5px;
}