body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #445243;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}

.container {
    width: 90%;
    max-width: 400px;
    text-align: center;
    transform: scale(1.00);
    transform-origin: top center;
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: none;
    border-radius: 5px;
}

input, select {
    background-color: white;
    color: black;
}

button {
    background-color: white;
    color: black;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background-color: #dddddd;
}

.appScreen {
    display: none;
}

.menu-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.menu-logo img {
    height: 1.5em;   /* 50% más grande que el texto */
    width: auto;
    display: block;
}