body {
    margin: 0;
}
/* Sección de login */
.login-section {
    background-color: #161616;
    background: url('../assets/login-background.webp') no-repeat center center/cover;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Título */
.login-text {
    margin-bottom: 40px;
    font-size: 2rem;
    color: #fff;
    text-align: center;

}

/* Formulario */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Espacio entre los elementos */
    background-color: #1616166e;
    padding: 30px 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px); /* Desenfoque del fondo */
    -webkit-backdrop-filter: blur(10px); /* Compatibilidad con Safari */
}

/* Etiquetas */
.text-00 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 5px;
    text-align: left;
    width: 300px; /* Alinea con el ancho del input */
}

/* Inputs */
#username, #password {
    border-radius: 30px;
    height: 35px;
    width: 300px;
    padding: 0 10px;
    border: 1px solid #ccc;
    font-family: outfit;
}

/* Botón */
.login-button {
    background-color: #f8b031;
    color: #161616;
    font-size: 1rem;
    font-weight: 400;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    cursor: pointer;
    width: 150px;
    transition: background-color 0.5s ease;
    transition: color 0.5s ease;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: outfit;
}

.login-button:hover {
    background-color: #7b7b7b;
    color:#fff;
}

@media (max-width: 768px) {
    
    form {
        width: 250px;
        padding: 10px;
    }
    .login-text {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    #username, #password {
        width: 200px;
    }
    .text-00 {
        margin-left: 100px;
        margin-bottom: 0px;
    }
}