body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
    text-align: center;
    color: #333;
}

.container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
}

.logo {
    margin-bottom: 30px;
}

.logo img {
    max-width: 150px; /* Ajusta el tamaño del logo si es una imagen */
    height: auto;
}

.logo h1 {
    font-size: 3em;
    color: #e44d26; /* Un color que podría simular el rojo de Expert, puedes ajustarlo */
    margin: 0;
}

h1 {
    color: #555;
    font-size: 2.5em;
    margin-bottom: 20px;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 10px;
}