

body {
    font-family: Arial, sans-serif;
    background-color: yellow;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}
.form-group {
    margin-bottom: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
}
input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}
button {
    background: #4285f4;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
}
.lang-switcher {
    margin-top: 15px;
    text-align: center;
}
