a {
    text-decoration: none;
}
.login-page {
    width: 100%;
    height: 100vh;
    display: inline-block;
    display: flex;
    align-items: center;
}
.form-right i {
    font-size: 100px;
}

.language-switcher {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.language-switcher .lang-item img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 0 0 2px transparent;
}

.language-switcher .lang-item:hover img {
    transform: scale(1.1);
    box-shadow: 0 0 0 2px rgba(0,0,0,0.15);
}

.language-switcher .lang-item.active img {
    box-shadow: 0 0 0 2px #0d6efd;
}