body {
    background-color: #f8f9fa;
    display: grid;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    background: url(../images/background.jpg) no-repeat center center fixed;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #ffffffcf;
    margin: 20px auto;
    padding: 0;
    margin-top:130px;
}

a{
    color:#ececec;
    text-decoration: none;
}
.language-selector {
    background-color: #000000de;
    margin: 0 auto;
    /* margin-left: 40%; */
    border: 1px solid #ff1b1b;
    border-radius: 4px;
    padding: 5px;
    font-size: 16px;
    /* margin-left: 39%; */
    color: #ffffff;
    cursor: pointer;
    width: 100%;
}

.language-selector:focus {
    outline: none;
    border-color: #ececec;
}

.logo {
    height: 50px; /* Ajusta esta altura según tus necesidades */
    width: auto; /* Mantén el ancho proporcional */
    max-width: 200px; /* Establece un ancho máximo si es necesario */
    margin-right: 20px;
}

.transparent-header {
    background-color: rgb(0 0 0 / 50%);
    color: #ffffff;
    padding: 20px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #ff1b1b;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-container h1 {
    margin: 0;
    font-size: 24px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #ececec;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffffff;
}

.container {
    /* padding-top: 60px;   Ajusta según la altura del header */
    text-align: center;
    background-color: #0000004a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(255 255 255);
    text-align: center;
    position: relative;
    color: #ffffff;
    /* float: left; */
    font-family: sans-serif;
    max-width: 370px;
    margin: auto;

}

h1 {
    color: #ffffff;
}
form {
    margin-top: 20px;
}
input[type="text"], input[type="password"] {
    padding: 10px;
    margin: 10px 0;
    width: 90%;
    border: 3px solid #ffffff;
    border-radius: 8px;
    font-size: 16px;
    opacity: 0.6;
    color: rgb(0, 0, 0);
}
input[type="submit"] {
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
input[type="submit"]:hover {
    background-color: #0056b3;
}
.link {
    margin-top: 10px;
    display: block;
    color: #ececec;
    text-decoration: none;
}
.link:hover {
    text-decoration: none;
}

/* visited link */
a:visited {
    color: #ececec;
    text-decoration: none;
  }
  
  
  /* selected link */
  a:active {
    color: blue;
  }
.transparent-footer {
    padding: 0px 0px 10px 0px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.5);
    position: fixed;
    bottom: 0;
    /* height: 90px; */
    width: 100%;
    margin: 0 auto;
}

.footer-container{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}