body {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            text-align: center;
            color: #050a4d;
            background-color: #f4f4f4;
        }
        .logo img {
            width: 150px;
            height: 150px;
            margin-bottom: 30px;
        }
        h1 {
            font-size: 24px;
            margin-bottom: 10px;
        }
        p {
            font-size: 18px;
        }

        /* Estilo para el botón */
.btn-volver {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #050a4d;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.btn-volver:hover {
    background-color: #03074d;
}

        