body {
    margin: 0;
    padding: 0;
    font-family: 'Varela Round', sans-serif;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #5f6161;
}

input[type="text"], input[type="password"]{
    outline: none;
    padding: 20px;
    display: block;
    width: 300px;
    border-radius: 3px;
    border: 1px solid #eee;
    margin: 50px auto;
}

input[type="submit"]{
    padding: 13px;
    color: #ffffff;
    background: #0098cb;
    width: 320px;
    margin: 20px auto;
    margin-top: 0;
    border-style: groove;
    border-radius: 3px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #00b8eb;
}

.login-container {
    width: 600px;
    height: 470px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #0098cb;
}

.photo-container {
    width: 600px;
    height: 510px;
    margin-left: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.foto {
    max-width: 100%; /* Ancho máximo igual al ancho del contenedor */
    max-height: 100%; /* Altura máxima igual a la altura del contenedor */
    height: 100%;
    display: block; /* Para asegurar que la imagen se comporte como un elemento de bloque */
    margin: auto; /* Para centrar la imagen dentro del contenedor */
}
.background-image {
    background-image: url('../../img/telecable.jpg'); /* Ruta de la imagen de fondo */
    background-size: cover; /* Escala la imagen para cubrir todo el contenedor */
    background-position: center; /* Centra la imagen de fondo */
    position: fixed; /* Fija la imagen de fondo para que se desplace con el contenido */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-image::before {
    content: ""; /* Crea un pseudo-elemento para aplicar el filtro de desenfoque */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit; /* Hereda la imagen de fondo del elemento anterior */
    filter: blur(20px); /* Aplica un filtro de desenfoque a la imagen */
    z-index: -1; /* Sitúa este pseudo-elemento detrás de otros elementos */
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


h1 {
    color: white;
    margin-bottom: 50px;
}