/**
 * СТИЛИ ДЛЯ ДЕСКТОПА (Экраны > 1024px)
 * Страница: index.php (Вход)
 */

:root { 
    --blue: #6366f1; 
    --pink: #f43f5e; 
    --dark: #0f172a; 
    --bg: #f0f7ff;
}

body { 
    margin: 0; 
    font-family: 'Montserrat', sans-serif; 
    background: var(--bg); 
    display: flex; 
    flex-direction: column; 
    min-height: 100vh; 
    align-items: center; 
    justify-content: center; 
}

/* Переключатель языков - в углу */
.lang-switcher { 
    position: absolute; 
    top: 40px; 
    right: 40px; 
    display: flex; 
    gap: 15px; 
}

.lang-btn { 
    text-decoration: none; 
    font-weight: 900; 
    color: var(--dark); 
    padding: 10px 22px; 
    border-radius: 14px; 
    background: white; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
    transition: 0.3s; 
}

.lang-btn.active { 
    background: var(--blue); 
    color: white; 
}

/* Карточка входа - по центру */
.login-card { 
    background: white; 
    padding: 60px; 
    border-radius: 50px; 
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.1); 
    width: 420px; 
    text-align: center; 
}

.logo-img { 
    width: 320px; 
    margin-bottom: 40px; 
}

/* Поля ввода */
input { 
    width: 100%; 
    padding: 22px; 
    margin-bottom: 20px; 
    border: 2px solid #e2e8f0; 
    border-radius: 22px; 
    box-sizing: border-box; 
    font-family: inherit; 
    font-weight: 700; 
    outline: none; 
    font-size: 16px; 
    transition: 0.3s;
}

input:focus {
    border-color: var(--blue);
    background: #f8faff;
}

/* Кнопка входа */
.btn-login { 
    width: 100%; 
    padding: 22px; 
    border: none; 
    border-radius: 22px; 
    background: var(--blue); 
    color: white; 
    font-weight: 900; 
    font-size: 18px; 
    cursor: pointer; 
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.3); 
    transition: 0.3s;
}

.btn-login:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

/* Копирайт внизу */
.footer-info { 
    position: absolute; 
    bottom: 40px; 
    color: #94a3b8; 
    font-size: 13px; 
    font-weight: 700; 
    letter-spacing: 0.5px;
}