* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Roboto';
    src: url('/static/fonts/roboto-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #1e1e1e, #121212);
}



.login-container {
    background-color: rgba(30, 30, 30, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    width: 100%;
    max-width: 400px;
    position: relative;
}

.logo img {
    width: 120px;
    display: block;
    margin: 0 auto 30px;
}

h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.input-field {
    margin-bottom: 20px;
}

.input-field input {
    width: 100%;
    padding: 12px;
    background-color: #333;
    border: 1px solid #444;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
}

.input-field input:focus {
    outline: none;
    border-color: #3f87f5;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #3f87f5;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1e6ed7;
}

.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #333;
    border-radius: 5px;
    padding: 5px 10px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70px;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 55px;
    right: 20px; 
    background-color: #333;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    width: 70px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.language-dropdown a {
    color: #fff;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
    border-bottom: 1px solid #444;
    border-radius: 5px;
}

.language-dropdown a:hover {
    background-color: #444;
    border-radius: 5px;
}

.language-dropdown a img {
    width: 20px;
    height: auto; 
    margin-right: 10px;
    border-radius: 5px;
}

.language-selector img {
    width: 25px;
    height: auto;
}

.language-selector.active + .language-dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.button-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.button-group button {
    padding: 12px;
    background-color: #555;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button-group button:hover {
    background-color: #3f87f5;
}

body {
    color: white;
}
.btn-submit {
    margin-top: 15px;
}
a {
    color: rgb(194, 194, 194);
    text-decoration: underline;
}
