/* ===== ЛОГИН СТРАНИЦА ===== */

#login-screen {
    position: fixed;
    inset: 0;
    background: #694F5D;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: Arial, sans-serif;
    z-index: 999999;
}

#login-box {
    width: 320px;
    text-align: center;
}

#login-box img {
    width: 320px;
    max-width: 100%;
    margin-bottom: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.login-input {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
    padding: 12px 14px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    outline: none;
}


#login-btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;

    padding: 12px 0;

    background: #4B70C3;
    color: white;
    border: none;

    border-radius: 8px;

    font-size: 17px;
    cursor: pointer;
    transition: 0.2s;
    box-sizing: border-box;
}




#login-btn:hover {
    background: #3d5fb0;
}

#login-error {
    margin-top: 10px;
    color: #ffdede;
    display: none;
}

/* ===== МЕНЮ ===== */

.hidden {
    display: none !important;
}

#top-menu {
    width: 100%;
    background: white;
    border-bottom: 1px solid #ddd;
    padding: 14px 22px;
    display: flex;
    gap: 25px;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.menu-item {
    cursor: pointer;
    padding-bottom: 4px;
}

.menu-item.active {
    border-bottom: 2px solid #4B70C3;
    color: #4B70C3;
}

#content {
    padding: 20px;
    font-size: 20px;
    font-family: Arial, sans-serif;
}