body {
    margin: 0;
    background-color: lightblue;
    height: 100vh;
    display: flex;
    justify-content: center;
}

.lang {
    position: absolute;
    top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 400px);
    gap: 20px;
}

.field {
    background-color: aquamarine;
    border-bottom: 2px solid blue;
    border-right: 2px solid blue;
    box-shadow: 4px 4px 8px aqua;
    height: 250px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: larger;
    font-family: 'Courier New', Courier, monospace;
    color: black;
    text-decoration: none;
}

.lang.notSelected {
    left: -50px;
    transform: translateX(-100%);
}

.langToggle {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 30px;
    width: 60px;
}

.langToggle .circle {
    background-color: blue;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    position: absolute;
    top: 2.5px;
}

.langToggle .bar {
    height: 15px;
    width: 40px;
    position: absolute;
    background-color: blueviolet;
    top: 7.5px;
    left: 10px;
    border-radius: 7.5px;
}

.circle.left {
    left: 0;
}

.circle.right {
    right: 0;
}