/* Estilos modernos com layout centralizado */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    text-align: center;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

#message {
    font-size: 1.5rem;
    color: #333;
    padding: 10px 0;
}
