*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: sans-serif;
}
nav{
    background-color: rgb(0, 0, 0);
    height: 80px;
    width: 100%;
    position: relative;
    top: -590px;
    left: 0px;
}
.enlace{
    position: absolute;
    padding: 20px 50px;
}
.logo{
    height: 40px;
}
nav ul{
    float: right;
    margin-right:  20px;   
}
nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}
nav ul li a{
    color: #000000;
    font-size: 18px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}
li a.active, li a:hover{
    background-color: #000000;
    transition: .5s;
}
.checkbtn{
    font-size: 30px;
    color: #000000;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
#check{
    display: none;
}
body {
    min-height: 100vh;
    background-color: #090c31;
    background: url(etrella.gif) no-repeat;
    background-size: cover;
    background-position: left center;
    place-items: center;
    font-family: 'Arial', sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Sombra para dar profundidad */
    max-width: 400px;
    width: 100%;
}

h2 {
    text-align: center;
    color: #333; /* Color del título */
    font-size: 24px;
    margin-bottom: 20px;
}

/* Estilo de las etiquetas */
label {
    display: block;
    font-size: 14px;
    color: #555; /* Color gris oscuro para las etiquetas */
    margin-bottom: 6px;
}

/* Estilo de los inputs */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc; /* Borde gris claro */
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #09a3fc; /* Cambiar el borde al hacer foco */
    outline: none;
}

/* Estilo del botón */
button {
    width: 100%;
    padding: 12px;
    background-color: #0594e7; /* Color de fondo verde */
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #036475; /* Cambia el color del botón al pasar el mouse */
}

/* Estilo del formulario en general */
form {
    margin-top: 20px;
}

form a {
    text-decoration: none;
    color: #0abaff;
    font-size: 14px;
    display: block;
    text-align: center;
    margin-top: 20px;
}

form a:hover {
    text-decoration: underline;
}

/* Responsividad */
@media screen and (max-width: 600px) {
    .login-container {
        padding: 20px;
    }

    h2 {
        font-size: 20px;
    }
}
