body {
    font-family: Avenir Next LT Pro Demi, sans-serif;
    display: flex;
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    flex: 1;
}

.left-panel {
    background-color: #00bcd4;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.left-panel h1 {
    font-size: 2.5em;
}

.left-panel p {
    font-size: 1.2em;
    text-align: center;
    margin: 20px 0;
}

.left-panel button {
    background-color: #00bcd4;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 20px;
}

.left-panel button:hover {
    background-color: #00a1b6;
    border-color: #00a1b6;
}

.right-panel form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.right-panel {
    background-color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.right-panel h2 {
    font-size: 2.5em;
    color: #333;
}

.right-panel input {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    font-size: 1em;
    border: 2px solid #ccc;
    border-radius: 20px;
}

.right-panel a {
    color: #00bcd4;
    text-decoration: none;
    margin: 10px 0;
}

.right-panel button {
    background-color: #00bcd4;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 20px;
}

.right-panel button:hover {
    background-color: #0099a8;
}

.plane-icon {
    position: absolute;
    right: 10px;
    width: 150px;
    height: 300px;
}

.language-selector {
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 20px;
}